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 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" }] }, ]} /> 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() {