banned.tsx 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. import { Flex } from "reflexbox/styled-components";
  2. import Link from "next/link";
  3. import React from "react";
  4. import AppWrapper from "../components/AppWrapper";
  5. import { H2, H4, Span } from "../components/Text";
  6. import Footer from "../components/Footer";
  7. import ALink from "../components/ALink";
  8. import { Col } from "../components/Layout";
  9. const BannedPage = () => {
  10. return (
  11. <AppWrapper>
  12. <Col flex="1 1 100%" alignItems="center">
  13. <H2 textAlign="center" my={3} normal>
  14. Link has been banned and removed because of{" "}
  15. <Span style={{ borderBottom: "1px dotted rgba(0, 0, 0, 0.4)" }} bold>
  16. malware or scam
  17. </Span>
  18. .
  19. </H2>
  20. <H4 textAlign="center" normal>
  21. If you noticed a malware/scam link shortened by{" "}
  22. {process.env.SITE_NAME},{" "}
  23. <Link href="/report">
  24. <ALink title="Send report">send us a report</ALink>
  25. </Link>
  26. .
  27. </H4>
  28. </Col>
  29. <Footer />
  30. </AppWrapper>
  31. );
  32. };
  33. export default BannedPage;