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