2 Commits

Author SHA1 Message Date
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 NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import ProductCardOne from '@/components/sections/product/ProductCardOne'; import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import { Leaf, MapPin, ShieldCheck, Sparkles, Users, Zap } from "lucide-react"; import { Leaf, MapPin, ShieldCheck, Sparkles, Users, Zap } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
@@ -36,7 +35,6 @@ export default function LandingPage() {
{ name: "Home", id: "hero" }, { name: "Home", id: "hero" },
{ name: "Store", id: "products" }, { name: "Store", id: "products" },
{ name: "Our Story", id: "about" }, { name: "Our Story", id: "about" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
]} ]}
brandName="FreshRoot Farm" brandName="FreshRoot Farm"
@@ -160,22 +158,6 @@ export default function LandingPage() {
/> />
</div> </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"> <div id="faq" data-section="faq">
<FaqSplitText <FaqSplitText
useInvertedBackground={false} useInvertedBackground={false}
@@ -213,4 +195,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }