Merge version_11 into main #39

Merged
bender merged 5 commits from version_11 into main 2026-04-19 18:50:19 +00:00
5 changed files with 71 additions and 6 deletions

View File

@@ -26,8 +26,8 @@ export default function ContactPage() {
navItems={[
{ name: "Home", id: "/" },
{ name: "Features", id: "/features" },
{ name: "Impact", id: "/" },
{ name: "FAQ", id: "/" },
{ name: "Services", id: "/services" },
{ name: "FAQ", id: "/faq" },
{ name: "Privacy", id: "/privacy" },
{ name: "Contact", id: "/contact" },
]}

View File

@@ -26,8 +26,8 @@ export default function FeaturesPage() {
navItems={[
{ name: "Home", id: "/" },
{ name: "Features", id: "/features" },
{ name: "Impact", id: "/" },
{ name: "FAQ", id: "/" },
{ name: "Services", id: "/services" },
{ name: "FAQ", id: "/faq" },
{ name: "Privacy", id: "/privacy" },
{ name: "Contact", id: "/contact" },
]}

View File

@@ -33,6 +33,7 @@ export default function LandingPage() {
navItems={[
{ name: "Home", id: "hero" },
{ name: "Features", id: "/features" },
{ name: "Services", id: "/services" },
{ name: "Impact", id: "pollution" },
{ name: "FAQ", id: "faq" },
{ name: "Privacy", id: "/privacy" },

View File

@@ -26,8 +26,8 @@ export default function PrivacyPolicyPage() {
navItems={[
{ name: "Home", id: "/" },
{ name: "Features", id: "/features" },
{ name: "Impact", id: "/" },
{ name: "FAQ", id: "/" },
{ name: "Services", id: "/services" },
{ name: "FAQ", id: "/faq" },
{ name: "Privacy", id: "/privacy" },
{ name: "Contact", id: "/contact" },
]}

64
src/app/services/page.tsx Normal file
View File

@@ -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 FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="smallMedium"
sizing="largeSizeMediumTitles"
background="aurora"
cardStyle="gradient-mesh"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="layered"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Features", id: "/features" },
{ name: "Services", id: "/services" },
{ name: "FAQ", id: "/faq" },
{ name: "Privacy", id: "/privacy" },
{ name: "Contact", id: "/contact" },
]}
brandName="OceanImpact"
/>
</div>
<div id="services" data-section="services">
<FeatureCardEight
textboxLayout="split"
useInvertedBackground={false}
title="Our Research Services"
description="Comprehensive marine environmental assessment and data collection services."
features={[
{ title: "Pollution Monitoring", description: "Advanced tracking of sewage and chemical discharge in coastal areas." },
{ title: "Ecosystem Impact Study", description: "Deep dive analysis into how maritime activities degrade reef structures." },
{ title: "Policy Consultation", description: "Expert guidance on implementing sustainable maritime policies." }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="OceanImpact: Cruise Ships"
columns={[
{ title: "Resources", items: [{ label: "Research", href: "#" }, { label: "Policies", href: "#" }] },
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Privacy", href: "/privacy" }, { label: "Contact", href: "/contact" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}