banned.tsx 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. import getConfig from "next/config";
  2. import React from "react";
  3. import AppWrapper from "../components/AppWrapper";
  4. import { H2, H4, Span } from "../components/Text";
  5. import Footer from "../components/Footer";
  6. import ALink from "../components/ALink";
  7. import { Col } from "../components/Layout";
  8. const { publicRuntimeConfig } = getConfig();
  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. {publicRuntimeConfig.SITE_NAME},{" "}
  23. <ALink href="/report" title="Send report" isNextLink>
  24. send us a report
  25. </ALink>
  26. .
  27. </H4>
  28. </Col>
  29. <Footer />
  30. </AppWrapper>
  31. );
  32. };
  33. export default BannedPage;