Merge version_14 into main #23

Merged
bender merged 2 commits from version_14 into main 2026-04-07 00:18:41 +00:00
2 changed files with 21 additions and 20 deletions

View File

@@ -20,6 +20,7 @@ export const metadata: Metadata = {
};
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
});

View File

@@ -3,12 +3,12 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
import FooterCard from '@/components/sections/footer/FooterCard';
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
export default function LandingPage() {
return (
@@ -19,9 +19,9 @@ export default function LandingPage() {
contentWidth="mediumLarge"
sizing="mediumLargeSizeLargeTitles"
background="grid"
cardStyle="gradient-radial"
cardStyle="glass-elevated"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="solid"
secondaryButtonStyle="glass"
headingFontWeight="extrabold"
>
<ReactLenis root>
@@ -58,30 +58,30 @@ export default function LandingPage() {
</div>
<div id="about" data-section="about">
<InlineImageSplitTextAbout
heading={[
{ type: 'text', content: 'Our ' },
{ type: 'image', src: 'https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BtwXXwXAFgkLcj8UK8yqk5jXxb/bubbles-ascending-slowly-through-ocean-s-1775511261316-98e8ea56.png', alt: 'Ocean bubbles' },
{ type: 'text', content: ' 5Rs Strategy' }
<MetricSplitMediaAbout
title="Our Mission & The 5Rs Strategy"
description="We are dedicated to safeguarding our oceans by implementing a proactive, layered approach to waste management and community engagement."
metrics={[
{ value: "5", title: "Core Pillars (5Rs)" },
{ value: "100%", title: "Ecological Commitment" }
]}
useInvertedBackground={false}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BtwXXwXAFgkLcj8UK8yqk5jXxb/vibrant-coral-reef-in-midwater-soft-ligh-1775511262201-ae7e40af.png"
className="bg-background-accent text-foreground py-20"
/>
</div>
<div id="features" data-section="features">
<FeatureCardThree
animationType="slide-up"
<FeatureCardTwelve
animationType="blur-reveal"
textboxLayout="split"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
title="What We Do"
description="Our strategy focuses on systematic change and actionable community restoration initiatives."
features={[
{ title: "Refuse & Reduce", description: "Say no to single-use plastics and minimize waste at the source.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BtwXXwXAFgkLcj8UK8yqk5jXxb/vibrant-coral-reef-in-midwater-soft-ligh-1775511262201-ae7e40af.png?_wi=2" },
{ title: "Reuse & Repurpose", description: "Extend the life of materials through creative reuse and repurposing.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BtwXXwXAFgkLcj8UK8yqk5jXxb/school-of-fish-swimming-through-midwater-1775511261257-73e530b0.png" },
{ title: "Final Goal", description: "A clean, thriving ocean ecosystem free from plastic debris.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BtwXXwXAFgkLcj8UK8yqk5jXxb/bubbles-drifting-past-futuristic-ocean-u-1775511260463-ae02a6e5.png" },
{ id: "1", label: "Refuse & Reduce", title: "Prevention", items: ["Single-use ban", "Packaging audits"] },
{ id: "2", label: "Reuse & Repurpose", title: "Circularity", items: ["Material upcycling", "Community workshops"] },
{ id: "3", label: "The Goal", title: "Restoration", items: ["Ecosystem cleaning", "Policy advocacy"] },
]}
title="Our Core Strategy"
description="Guided by the 5Rs, we empower communities to take actionable steps toward a sustainable future."
useInvertedBackground={false}
/>
</div>
@@ -119,4 +119,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}