From 329ae10062d3935b40cd4c891dff02a1fba33235 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 19 Apr 2026 12:15:38 +0000 Subject: [PATCH 1/3] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 58 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..69a8df9 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,58 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function ContactPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1 From 4b350e81aa868ddc26f5c1e415c9b06e54fd5da4 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 19 Apr 2026 12:15:39 +0000 Subject: [PATCH 2/3] Update src/app/features/page.tsx --- src/app/features/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/features/page.tsx b/src/app/features/page.tsx index b49d62f..a362eac 100644 --- a/src/app/features/page.tsx +++ b/src/app/features/page.tsx @@ -28,7 +28,7 @@ export default function FeaturesPage() { { name: "Features", id: "/features" }, { name: "Impact", id: "/" }, { name: "FAQ", id: "/" }, - { name: "Contact", id: "/" }, + { name: "Contact", id: "/contact" }, ]} brandName="OceanImpact" /> @@ -66,7 +66,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: "#" }] }, + { title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Contact", href: "/contact" }] }, ]} /> -- 2.49.1 From 1d9bd2f9beff8cb66ddb1bddec6cf43b3ea3f223 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 19 Apr 2026 12:15:39 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 103 ++++++++++++----------------------------------- 1 file changed, 25 insertions(+), 78 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f57598b..80bc39a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -31,16 +31,11 @@ export default function LandingPage() { - -
-
@@ -171,22 +132,8 @@ export default function LandingPage() { -- 2.49.1