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