Compare commits

...

7 Commits

Author SHA1 Message Date
832967a61e Merge version_44 into main
Merge version_44 into main
2026-04-28 16:23:22 +00:00
d92be32dd3 Update src/app/page.tsx 2026-04-28 16:23:19 +00:00
71aac91f1c Merge version_44 into main
Merge version_44 into main
2026-04-28 16:22:53 +00:00
2232906633 Update src/app/page.tsx 2026-04-28 16:22:50 +00:00
7b4f549c8e Merge version_43 into main
Merge version_43 into main
2026-04-28 16:16:40 +00:00
3222281f7f Merge version_43 into main
Merge version_43 into main
2026-04-28 16:16:11 +00:00
52e82755bb Merge version_43 into main
Merge version_43 into main
2026-04-28 16:15:48 +00:00

View File

@@ -9,6 +9,9 @@ import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarou
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import { Leaf, Award, MapPin, Droplets } from "lucide-react";
export default function LandingPage() {
return (
@@ -64,6 +67,22 @@ export default function LandingPage() {
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardThree
title="Our Impact in Numbers"
description="Measuring the quality and dedication behind every drop."
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
metrics={[
{ id: "m1", icon: Leaf, title: "Organic Groves", value: "500+" },
{ id: "m2", icon: Award, title: "Years of Heritage", value: "120+" },
{ id: "m3", icon: MapPin, title: "Hectares of Land", value: "15" },
{ id: "m4", icon: Droplets, title: "Litres Processed", value: "20k+" }
]}
/>
</div>
<div id="features" data-section="features">
<FeatureCardSeven
animationType="slide-up"
@@ -98,6 +117,20 @@ export default function LandingPage() {
/>
</div>
<div id="testimonial" data-section="testimonial">
<TestimonialCardTwo
title="What Our Customers Say"
description="We pride ourselves on the satisfaction of our loyal community."
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
testimonials={[
{ id: "t1", name: "Marko P.", role: "Culinary Expert", testimonial: "The finest olive oil I have ever used. The flavor profile is truly exceptional." },
{ id: "t2", name: "Elena V.", role: "Local Resident", testimonial: "A wonderful family-run business that respects the land and delivers top-tier quality." }
]}
/>
</div>
<div id="map" data-section="map">
<ContactCTA
useInvertedBackground={false}