4 Commits

Author SHA1 Message Date
7e07af1025 Update src/app/page.tsx 2026-04-06 23:55:41 +00:00
5959979be5 Update src/app/page.tsx 2026-04-06 23:55:08 +00:00
3fff402e7e Update src/app/layout.tsx 2026-04-06 23:55:07 +00:00
dac06ea33d Merge version_10 into main
Merge version_10 into main
2026-04-06 23:53:02 +00:00
2 changed files with 16 additions and 17 deletions

View File

@@ -19,9 +19,9 @@ export const metadata: Metadata = {
}, },
}; };
const montserrat = Montserrat({ const montserrat = Montserrat({
variable: "--font-montserrat", variable: "--font-montserrat", subsets: ["latin"],
subsets: ["latin"],
}); });
export default function RootLayout({ export default function RootLayout({

View File

@@ -8,8 +8,7 @@ import FooterCard from '@/components/sections/footer/FooterCard';
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import TimelineProcessFlow from '@/components/cardStack/layouts/timelines/TimelineProcessFlow'; import TeamCardSix from '@/components/sections/team/TeamCardSix';
import { Target } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -59,20 +58,20 @@ export default function LandingPage() {
</div> </div>
<div id="about" data-section="about"> <div id="about" data-section="about">
<TimelineProcessFlow <TeamCardSix
title="About Debris Free Oceans" title="About Debris Free Oceans"
description="We are a team of ocean advocates committed to a 5Rs approach to restore marine health and stop plastic flow. Our timeline follows a central wave path through the deep sea, connecting our mission and strategy nodes." description="Dedicated to keeping our oceans clean through a 5Rs mission. Our core strategy revolves around rethinking daily habits, reducing waste, and reimagining our relationship with the sea."
tag="Mission & Strategy" animationType="depth-3d"
tagIcon={Target} gridVariant="three-columns-all-equal-width"
textboxLayout="split-description" textboxLayout="split"
animationType="blur-reveal" useInvertedBackground={false}
items={[ members={[
{ content: "Debris Free Oceans is a grassroots organization dedicated to keeping our oceans clean. We partner with local communities and schools to raise awareness.", media: "", reverse: false }, { id: "1", name: "Our Mission", role: "Debris Free Oceans is a grassroots organization dedicated to keeping our oceans clean. We partner with local communities and schools to raise awareness." },
{ content: "The 5Rs Strategy (Refuse, Reduce, Reuse, Repurpose, Recycle) serves as our blueprint for sustainable daily living and corporate change.", media: "", reverse: true }, { id: "2", name: "The 5Rs", role: "Rethink & Reduce, Reuse, Recycle, Recapture & Redesign are our blueprint for sustainable daily living and corporate change." },
{ content: "We execute beach cleanups, educational workshops, and advocate for policy changes to ensure our oceans remain pristine.", media: "", reverse: false }, { id: "3", name: "What We Do", role: "Education, Community Cleanups, Sustainability Consulting, Advocacy to protect our blue planet." },
{ content: "Our ultimate goal is a healthy, self-sustaining blue planet, completely free from the harmful impact of modern plastic waste.", media: "", reverse: true } { id: "4", name: "Our Goal", role: "A healthy, self-sustaining blue planet, completely free from the harmful impact of modern plastic waste." }
]} ]}
className="bg-gradient-to-b from-teal-500 to-slate-950" className="bg-gradient-to-br from-[#E0F7FA] to-[#001f3f]"
/> />
</div> </div>
@@ -126,4 +125,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }