diff --git a/src/app/privacy-policy/page.tsx b/src/app/privacy-policy/page.tsx new file mode 100644 index 0000000..65b09dc --- /dev/null +++ b/src/app/privacy-policy/page.tsx @@ -0,0 +1,94 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import LegalSection from "@/components/legal/LegalSection"; + +export default function PrivacyPolicyPage() { + return ( + + + + + + ); +}