diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 69a8df9..20a1a6f 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -28,6 +28,7 @@ export default function ContactPage() { { name: "Features", id: "/features" }, { name: "Impact", id: "/" }, { name: "FAQ", id: "/" }, + { name: "Privacy", id: "/privacy" }, { name: "Contact", id: "/contact" }, ]} brandName="OceanImpact" @@ -48,7 +49,7 @@ export default function ContactPage() { logoText="OceanImpact: Cruise Ships" columns={[ { title: "Resources", items: [{ label: "Research", href: "#" }, { label: "Policies", href: "#" }] }, - { title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Contact", href: "/contact" }] }, + { title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Privacy", href: "/privacy" }, { label: "Contact", href: "/contact" }] }, ]} /> diff --git a/src/app/features/page.tsx b/src/app/features/page.tsx index a362eac..9c33745 100644 --- a/src/app/features/page.tsx +++ b/src/app/features/page.tsx @@ -28,6 +28,7 @@ export default function FeaturesPage() { { name: "Features", id: "/features" }, { name: "Impact", id: "/" }, { name: "FAQ", id: "/" }, + { name: "Privacy", id: "/privacy" }, { name: "Contact", id: "/contact" }, ]} brandName="OceanImpact" @@ -66,7 +67,7 @@ export default function FeaturesPage() { logoText="OceanImpact: Cruise Ships" columns={[ { title: "Resources", items: [{ label: "Research", href: "#" }, { label: "Policies", href: "#" }] }, - { title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Contact", href: "/contact" }] }, + { title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Privacy", href: "/privacy" }, { label: "Contact", href: "/contact" }] }, ]} /> diff --git a/src/app/page.tsx b/src/app/page.tsx index 80bc39a..38d6e22 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -35,6 +35,7 @@ export default function LandingPage() { { name: "Features", id: "/features" }, { name: "Impact", id: "pollution" }, { name: "FAQ", id: "faq" }, + { name: "Privacy", id: "/privacy" }, { name: "Contact", id: "/contact" }, ]} brandName="OceanImpact" @@ -133,7 +134,7 @@ export default function LandingPage() { logoText="OceanImpact: Cruise Ships" columns={[ { title: "Resources", items: [{ label: "Research", href: "#" }, { label: "Policies", href: "#" }] }, - { title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Contact", href: "/contact" }] }, + { title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Privacy", href: "/privacy" }, { label: "Contact", href: "/contact" }] }, ]} /> diff --git a/src/app/privacy/page.tsx b/src/app/privacy/page.tsx new file mode 100644 index 0000000..41f8e87 --- /dev/null +++ b/src/app/privacy/page.tsx @@ -0,0 +1,64 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import LegalSection from '@/components/legal/LegalSection'; + +export default function PrivacyPolicyPage() { + return ( + + + + + + + + + + ); +} \ No newline at end of file