banned.tsx 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. import React from "react";
  2. import Link from "next/link";
  3. import { Flex } from "reflexbox/styled-components";
  4. import BodyWrapper from "../components/BodyWrapper";
  5. import Footer from "../components/Footer";
  6. import Text from "../components/Text";
  7. import ALink from "../components/ALink";
  8. const BannedPage = () => {
  9. return (
  10. <BodyWrapper>
  11. <Flex flex="1 1 100%" flexDirection="column" alignItems="center">
  12. <Text as="h2" textAlign="center" my={3} fontWeight={400}>
  13. Link has been banned and removed because of{" "}
  14. <Text
  15. as="span"
  16. fontWeight={700}
  17. style={{ borderBottom: "1px dotted rgba(0, 0, 0, 0.4)" }}
  18. >
  19. malware or scam
  20. </Text>
  21. .
  22. </Text>
  23. <Text as="h4" textAlign="center" fontWeight={400}>
  24. If you noticed a malware/scam link shortened by Kutt,{" "}
  25. <Link href="/report">
  26. <ALink title="Send report">send us a report</ALink>
  27. </Link>
  28. .
  29. </Text>
  30. </Flex>
  31. <Footer />
  32. </BodyWrapper>
  33. );
  34. };
  35. export default BannedPage;