From cba0e0a7e34f8fdf79e1cfad08832d735a11a716 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 13 May 2026 08:23:49 +0000 Subject: [PATCH] Add src/app/privacy-policy/page.tsx --- src/app/privacy-policy/page.tsx | 54 +++++++++++++++++++++++++++++++++ 1 file changed, 54 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..80f215f --- /dev/null +++ b/src/app/privacy-policy/page.tsx @@ -0,0 +1,54 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import LegalSection from '@/components/legal/LegalSection'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function PrivacyPolicy() { + return ( + + + + + + + + ); +} \ No newline at end of file