5 Commits

Author SHA1 Message Date
d35cf32799 Merge version_4 into main
Merge version_4 into main
2026-04-30 15:39:14 +00:00
3e586a8b8f Update src/app/page.tsx 2026-04-30 15:39:08 +00:00
0c36e25671 Merge version_3 into main
Merge version_3 into main
2026-04-30 15:37:34 +00:00
67650a8414 Update src/app/page.tsx 2026-04-30 15:37:28 +00:00
c81fab646c Merge version_2 into main
Merge version_2 into main
2026-04-30 15:35:42 +00:00

View File

@@ -12,7 +12,6 @@ import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import { Leaf, MapPin, ShieldCheck, Sparkles, Users, Zap } from "lucide-react";
export default function LandingPage() {
@@ -36,10 +35,9 @@ export default function LandingPage() {
{ name: "Home", id: "hero" },
{ name: "Store", id: "products" },
{ name: "Our Story", id: "about" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
brandName="FreshRoot Farm"
brandName="Red Bud Farms"
/>
</div>
@@ -106,7 +104,7 @@ export default function LandingPage() {
reverse: true,
},
]}
title="Why Choose FreshRoot?"
title="Why Choose Red Bud Farms?"
description="Transparency and quality are at the heart of everything we produce. From the meat on your dinner plate to the soap in your shower."
/>
</div>
@@ -160,22 +158,6 @@ export default function LandingPage() {
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwelve
useInvertedBackground={false}
testimonials={[
{ id: "1", name: "Sarah Miller", imageSrc: "http://img.b2bpic.net/free-photo/happy-girl-taking-photo-her-salad-indoor-portrait-smiling-brunette-woman-having-fun-dinner_197531-17193.jpg" },
{ id: "2", name: "David Chen", imageSrc: "http://img.b2bpic.net/free-photo/playful-woman-with-agenda-head_23-2148357603.jpg" },
{ id: "3", name: "Elena Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/couple-picnic-lawn-park_23-2148179189.jpg" },
{ id: "4", name: "Mark Thompson", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-checking-organic-vegetables_23-2148454513.jpg" },
{ id: "5", name: "Jessica Lee", imageSrc: "http://img.b2bpic.net/free-photo/furious-young-handsome-slavic-gardener-uniform-hat-holding-basket-vegetables-rake-screaming-isolated-crimson-wall_141793-59317.jpg" },
]}
cardTitle="Loved by Our Community"
cardTag="Reviews"
cardAnimation="slide-up"
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitText
useInvertedBackground={false}
@@ -207,10 +189,10 @@ export default function LandingPage() {
{ items: [{ label: "Store", href: "#products" }, { label: "About Us", href: "#about" }] },
{ items: [{ label: "Contact", href: "#contact" }, { label: "FAQ", href: "#faq" }] },
]}
logoText="FreshRoot Farm"
logoText="Red Bud Farms"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}