| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import React from "react";
- import styled from "styled-components";
- import { Flex } from "reflexbox/styled-components";
- import FeaturesItem from "./FeaturesItem";
- import { ColCenterH } from "./Layout";
- import { Colors } from "../consts";
- import Text, { H3 } from "./Text";
- const Features = () => (
- <ColCenterH
- width={1}
- flex="0 0 auto"
- py={[64, 100]}
- backgroundColor={Colors.FeaturesBg}
- >
- <H3 fontSize={[26, 28]} mb={72} light>
- Kutting edge features.
- </H3>
- <Flex
- width={1200}
- maxWidth="100%"
- flex="1 1 auto"
- justifyContent="center"
- flexWrap={["wrap", "wrap", "wrap", "nowrap"]}
- >
- <FeaturesItem title="Managing links" icon="edit">
- Create, protect and delete your links and monitor them with detailed
- statistics.
- </FeaturesItem>
- <FeaturesItem title="Custom domain" icon="shuffle">
- Use custom domains for your links. Add or remove them for free.
- </FeaturesItem>
- <FeaturesItem title="API" icon="zap">
- Use the provided API to create, delete, and get URLs from anywhere.
- </FeaturesItem>
- <FeaturesItem title="Free & open source" icon="heart">
- Completely open source and free. You can host it on your own server.
- </FeaturesItem>
- </Flex>
- </ColCenterH>
- );
- export default Features;
|