diff --git a/src/app/privacy/page.tsx b/src/app/privacy/page.tsx new file mode 100644 index 0000000..bf3b154 --- /dev/null +++ b/src/app/privacy/page.tsx @@ -0,0 +1,149 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import LegalSection from '@/components/legal/LegalSection'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; + +export default function PrivacyPage() { + return ( + + + +
+ +
+ + +
+ ); +}