From 6a5b84cf84cb35a0a2bf5bf7968cce99b702bd21 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 01:58:41 +0000 Subject: [PATCH] Add src/app/privacy-policy/page.tsx --- src/app/privacy-policy/page.tsx | 154 ++++++++++++++++++++++++++++++++ 1 file changed, 154 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..f331ec1 --- /dev/null +++ b/src/app/privacy-policy/page.tsx @@ -0,0 +1,154 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import LegalSection from '@/components/legal/LegalSection'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function PrivacyPolicyPage() { + return ( + + + + + + + + ); +} \ No newline at end of file