Compare commits
35 Commits
version_9
...
version_11
| Author | SHA1 | Date | |
|---|---|---|---|
| ba95492653 | |||
| 663f9ff919 | |||
| 6b7971bf65 | |||
| a92eb006e4 | |||
| 577cf67ce6 | |||
| 5566f4a73b | |||
| 6d121a5c15 | |||
| f81d24801f | |||
| f458c5219a | |||
| 27ce4aaedc | |||
| 4bbad45736 | |||
| f9239ebd9b | |||
| cddde24b8f | |||
| 56b68f0e8d | |||
| 0ca32465a0 | |||
| 0c699eb094 | |||
| 1875909bbb | |||
| 088d2e5c60 | |||
| 71419c9af8 | |||
| 890841616a | |||
| e0de2d2e77 | |||
| 12432672c4 | |||
| 1a6231afcb | |||
| 39e76bfa9e | |||
| d18f72fc56 | |||
| e018260a63 | |||
| 1799517dc7 | |||
| 70f703dd2a | |||
| 3e8990d51f | |||
| 1ea34f7a64 | |||
| 9b5c302613 | |||
| 56ae324508 | |||
| 26c52fdd0a | |||
| 69c51594a1 | |||
| b6b967ab90 |
@@ -26,6 +26,7 @@ export default function ContactPage() {
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Features", id: "/features" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Impact", id: "/" },
|
||||
{ name: "FAQ", id: "/" },
|
||||
{ name: "Privacy", id: "/privacy" },
|
||||
|
||||
@@ -26,6 +26,7 @@ export default function FeaturesPage() {
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Features", id: "/features" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Impact", id: "/" },
|
||||
{ name: "FAQ", id: "/" },
|
||||
{ name: "Privacy", id: "/privacy" },
|
||||
|
||||
@@ -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" },
|
||||
|
||||
@@ -26,6 +26,7 @@ export default function PrivacyPolicyPage() {
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Features", id: "/features" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Impact", id: "/" },
|
||||
{ name: "FAQ", id: "/" },
|
||||
{ name: "Privacy", id: "/privacy" },
|
||||
|
||||
73
src/app/services/page.tsx
Normal file
73
src/app/services/page.tsx
Normal file
@@ -0,0 +1,73 @@
|
||||
"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 FeatureBento from '@/components/sections/feature/FeatureBento';
|
||||
import { Droplet, Waves, Factory } from "lucide-react";
|
||||
|
||||
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: "Impact", id: "/" },
|
||||
{ name: "FAQ", id: "/" },
|
||||
{ name: "Privacy", id: "/privacy" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="OceanImpact"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureBento
|
||||
title="Our Research Services"
|
||||
description="Expert analysis and environmental monitoring solutions for marine ecosystems."
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
textboxLayout="default"
|
||||
features={[
|
||||
{
|
||||
title: "Water Quality Analysis", description: "Detailed sampling and impact assessments for cruise-related effluent.", bentoComponent: "reveal-icon", icon: Droplet,
|
||||
},
|
||||
{
|
||||
title: "Ecosystem Monitoring", description: "Tracking reef health and biodiversity loss near coastal cruise routes.", bentoComponent: "reveal-icon", icon: Waves,
|
||||
},
|
||||
{
|
||||
title: "Industry Emission Audits", description: "Quantifying atmospheric emissions and regulatory compliance for major fleets.", bentoComponent: "reveal-icon", icon: Factory,
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user