From 7a8e15b613eca52d6363210c18ff9a06ea9fc4c8 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 17 May 2026 13:43:00 +0000 Subject: [PATCH] Add src/app/privacy-policy/page.tsx --- src/app/privacy-policy/page.tsx | 76 +++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 src/app/privacy-policy/page.tsx diff --git a/src/app/privacy-policy/page.tsx b/src/app/privacy-policy/page.tsx new file mode 100644 index 0000000..64734a2 --- /dev/null +++ b/src/app/privacy-policy/page.tsx @@ -0,0 +1,76 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import LegalSection from "@/components/legal/LegalSection"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; + +export default function PrivacyPolicyPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file