Features.tsx 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. import React from "react";
  2. import styled from "styled-components";
  3. import { Flex } from "reflexbox/styled-components";
  4. import FeaturesItem from "./FeaturesItem";
  5. import { ColCenterH } from "./Layout";
  6. import { Colors } from "../consts";
  7. import Text, { H3 } from "./Text";
  8. const Features = () => (
  9. <ColCenterH
  10. width={1}
  11. flex="0 0 auto"
  12. py={[64, 100]}
  13. backgroundColor={Colors.FeaturesBg}
  14. >
  15. <H3 fontSize={[26, 28]} mb={72} light>
  16. Kutting edge features.
  17. </H3>
  18. <Flex
  19. width={1200}
  20. maxWidth="100%"
  21. flex="1 1 auto"
  22. justifyContent="center"
  23. flexWrap={["wrap", "wrap", "wrap", "nowrap"]}
  24. >
  25. <FeaturesItem title="Managing links" icon="edit">
  26. Create, protect and delete your links and monitor them with detailed
  27. statistics.
  28. </FeaturesItem>
  29. <FeaturesItem title="Custom domain" icon="shuffle">
  30. Use custom domains for your links. Add or remove them for free.
  31. </FeaturesItem>
  32. <FeaturesItem title="API" icon="zap">
  33. Use the provided API to create, delete and get URLs from anywhere.
  34. </FeaturesItem>
  35. <FeaturesItem title="Free &amp; open source" icon="heart">
  36. Completely open source and free. You can host it on your own server.
  37. </FeaturesItem>
  38. </Flex>
  39. </ColCenterH>
  40. );
  41. export default Features;