diff --git a/src/app/page.tsx b/src/app/page.tsx index d199115..3fc98c0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -189,7 +189,7 @@ export default function LandingPage() { items: [{ label: "Our Story", href: "#story" }, { label: "Careers", href: "#" }] }, { - items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] + items: [{ label: "Privacy Policy", href: "/privacy-policy" }, { label: "Terms", href: "#" }] } ]} /> @@ -197,4 +197,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} diff --git a/src/app/privacy-policy/page.tsx b/src/app/privacy-policy/page.tsx new file mode 100644 index 0000000..64734a2 --- /dev/null +++ b/src/app/privacy-policy/page.tsx @@ -0,0 +1,76 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import LegalSection from "@/components/legal/LegalSection"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; + +export default function PrivacyPolicyPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file