diff --git a/src/main.tsx b/src/main.tsx index 03e603a..cf9f280 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -6,6 +6,7 @@ import { ThemeProvider } from "@/context/Theme.tsx"; import IndexPage from "./pages/IndexPage.tsx"; import AppPage from "./pages/AppPage.tsx"; +import PrivacyPolicy from "./pages/PrivacyPolicy.tsx"; import "./index.css"; @@ -16,6 +17,7 @@ createRoot(document.getElementById("root")!).render( } /> } /> + } /> diff --git a/src/pages/IndexPage.tsx b/src/pages/IndexPage.tsx index 3fb79a8..6a4fb77 100644 --- a/src/pages/IndexPage.tsx +++ b/src/pages/IndexPage.tsx @@ -35,6 +35,10 @@ function IndexPage() {

Original vs. blockmatic

+ + ); } diff --git a/src/pages/PrivacyPolicy.tsx b/src/pages/PrivacyPolicy.tsx new file mode 100644 index 0000000..d113dfa --- /dev/null +++ b/src/pages/PrivacyPolicy.tsx @@ -0,0 +1,37 @@ +import { ArrowLeftIcon } from "lucide-react"; +import { Link } from "react-router"; + +function PrivacyPolicy() { + return ( +
+ + back + + +

Privacy Policy

+

+ Effective Date: January 2, 2025 +

+ +

By using this website, you confirm that you understand and agree to this Privacy Policy.

+ +
    +
  • Blockmatic does not collect, store, or process any data in any form.
  • +
  • It also does not use cookies or analytics services.
  • +
  • + Blockmatic is hosted by Vercel. I can not guarantee that Vercel does not collect any data, therefore I recommend reviewing their privacy + policy for clarification. +
  • +
+ +

+ If you have any questions or concerns, please contact me at:{" "} + + hello@trafficlunar.net + +

+
+ ); +} + +export default PrivacyPolicy;