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