From 882b8d011e84bad1d143dce213dd38007e5911e8 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 19 Apr 2026 12:25:15 +0000 Subject: [PATCH 1/4] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 69a8df9..84718cb 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" @@ -36,7 +37,7 @@ export default function ContactPage() {
-- 2.49.1 From b1a78837a305e2c5ae261536e634272a2367132a Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 19 Apr 2026 12:25:15 +0000 Subject: [PATCH 2/4] Update src/app/features/page.tsx --- src/app/features/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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" }] }, ]} /> -- 2.49.1 From f64676a4287004faf3f9a6da1a98e407de1b5841 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 19 Apr 2026 12:25:16 +0000 Subject: [PATCH 3/4] Update src/app/page.tsx --- src/app/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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" }] }, ]} /> -- 2.49.1 From 922da41fef6942c25cd4a6082eec122fbe4e5ac6 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 19 Apr 2026 12:25:16 +0000 Subject: [PATCH 4/4] Add src/app/privacy/page.tsx --- src/app/privacy/page.tsx | 64 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 src/app/privacy/page.tsx 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 -- 2.49.1