Merge version_1 into main #2
425
src/app/page.tsx
425
src/app/page.tsx
@@ -20,313 +20,146 @@ export default function LandingPage() {
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Our Values",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Products",
|
||||
id: "products",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
]}
|
||||
brandName="GreenHarvest Farm"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Our Values", id: "about" },
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="GreenHarvest Farm"
|
||||
button={{ text: "Contact Us", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogo
|
||||
logoText="GreenHarvest Farm"
|
||||
description="Bringing the freshest, organic produce from our fields straight to your kitchen table every single week."
|
||||
buttons={[
|
||||
{
|
||||
text: "Shop Now",
|
||||
href: "#products",
|
||||
},
|
||||
{
|
||||
text: "Learn More",
|
||||
href: "#about",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-landscape-haystacks-field_176420-55119.jpg?_wi=1"
|
||||
imageAlt="Fresh farm produce harvest"
|
||||
showDimOverlay={true}
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogo
|
||||
logoText="GreenHarvest Farm"
|
||||
description="Bringing the freshest, organic produce from our fields straight to your kitchen table every single week."
|
||||
buttons={[
|
||||
{ text: "Shop Now", href: "#products" },
|
||||
{ text: "Learn More", href: "#about" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-landscape-haystacks-field_176420-55119.jpg"
|
||||
imageAlt="Fresh farm produce harvest"
|
||||
showDimOverlay={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<AboutMetric
|
||||
useInvertedBackground={false}
|
||||
title="Our Farm Legacy"
|
||||
metrics={[
|
||||
{
|
||||
icon: Leaf,
|
||||
label: "Years Active",
|
||||
value: "25+",
|
||||
},
|
||||
{
|
||||
icon: Leaf,
|
||||
label: "Organic Acres",
|
||||
value: "150",
|
||||
},
|
||||
{
|
||||
icon: Users,
|
||||
label: "Happy Families",
|
||||
value: "500+",
|
||||
},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<AboutMetric
|
||||
useInvertedBackground={false}
|
||||
title="Our Farm Legacy"
|
||||
metrics={[
|
||||
{ icon: Leaf, label: "Years Active", value: "25+" },
|
||||
{ icon: Leaf, label: "Organic Acres", value: "150" },
|
||||
{ icon: Users, label: "Happy Families", value: "500+" },
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardTwentyFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Organic Certified",
|
||||
author: "Soil Health",
|
||||
description: "No synthetic pesticides or GMOs ever.",
|
||||
tags: [
|
||||
"Organic",
|
||||
"Clean",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/collection-pure-veggie-certified-green-product-label-tag-design_1017-50501.jpg",
|
||||
imageAlt: "organic logo",
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Freshness Guaranteed",
|
||||
author: "Direct Farm",
|
||||
description: "Harvested within 24 hours of delivery.",
|
||||
tags: [
|
||||
"Farm-to-Table",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-landscape-haystacks-field_176420-55119.jpg?_wi=2",
|
||||
imageAlt: "organic logo",
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Community Focus",
|
||||
author: "Local Support",
|
||||
description: "Supporting local families and schools.",
|
||||
tags: [
|
||||
"Community",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ripe-carrots-blue_23-2147761583.jpg?_wi=1",
|
||||
imageAlt: "organic logo",
|
||||
},
|
||||
]}
|
||||
title="Why Choose GreenHarvest?"
|
||||
description="We believe in sustainable agriculture that respects the land and delivers nutrient-dense food for your family."
|
||||
/>
|
||||
</div>
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardTwentyFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ id: "f1", title: "Organic Certified", author: "Soil Health", description: "No synthetic pesticides or GMOs ever.", tags: ["Organic", "Clean"], imageSrc: "http://img.b2bpic.net/free-vector/collection-pure-veggie-certified-green-product-label-tag-design_1017-50501.jpg", imageAlt: "organic logo" },
|
||||
{ id: "f2", title: "Freshness Guaranteed", author: "Direct Farm", description: "Harvested within 24 hours of delivery.", tags: ["Farm-to-Table"], imageSrc: "http://img.b2bpic.net/free-photo/beautiful-landscape-haystacks-field_176420-55119.jpg", imageAlt: "organic logo" },
|
||||
{ id: "f3", title: "Community Focus", author: "Local Support", description: "Supporting local families and schools.", tags: ["Community"], imageSrc: "http://img.b2bpic.net/free-photo/ripe-carrots-blue_23-2147761583.jpg", imageAlt: "organic logo" },
|
||||
]}
|
||||
title="Why Choose GreenHarvest?"
|
||||
description="We believe in sustainable agriculture that respects the land and delivers nutrient-dense food for your family."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Organic Carrots",
|
||||
price: "$4.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ripe-carrots-blue_23-2147761583.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Vine Tomatoes",
|
||||
price: "$6.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-tomatoes-plate-with-copy-space_23-2148253274.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Crisp Lettuce",
|
||||
price: "$3.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-fresh-lettuce_1203-1874.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Garden Broccoli",
|
||||
price: "$5.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/green-pods-peas-saucepans-with-asparagus-tomato-sorrel-spinach-lettuce-green-onion-top-view-wooden-wall_176474-5737.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Bell Peppers",
|
||||
price: "$7.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/arrangement-colorful-fresh-assorted-bell-pepperson-concrete-surface_114579-5421.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Garden Cucumbers",
|
||||
price: "$4.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-chopped-zucchinis-bowl-with-chopped-zucchinis-wooden-kitchen-board-with-knife-with-cauliflower-lettuce-bucket-with-cucumber-zucchinis-isolated-wooden-wall_141793-75698.jpg",
|
||||
},
|
||||
]}
|
||||
title="Seasonal Harvest"
|
||||
description="Browse our latest selection of seasonal vegetables grown with love and care."
|
||||
/>
|
||||
</div>
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "p1", name: "Organic Carrots", price: "$4.00", imageSrc: "http://img.b2bpic.net/free-photo/ripe-carrots-blue_23-2147761583.jpg" },
|
||||
{ id: "p2", name: "Vine Tomatoes", price: "$6.00", imageSrc: "http://img.b2bpic.net/free-photo/closeup-tomatoes-plate-with-copy-space_23-2148253274.jpg" },
|
||||
{ id: "p3", name: "Crisp Lettuce", price: "$3.00", imageSrc: "http://img.b2bpic.net/free-photo/close-up-fresh-lettuce_1203-1874.jpg" },
|
||||
{ id: "p4", name: "Garden Broccoli", price: "$5.00", imageSrc: "http://img.b2bpic.net/free-photo/green-pods-peas-saucepans-with-asparagus-tomato-sorrel-spinach-lettuce-green-onion-top-view-wooden-wall_176474-5737.jpg" },
|
||||
{ id: "p5", name: "Bell Peppers", price: "$7.00", imageSrc: "http://img.b2bpic.net/free-photo/arrangement-colorful-fresh-assorted-bell-pepperson-concrete-surface_114579-5421.jpg" },
|
||||
{ id: "p6", name: "Garden Cucumbers", price: "$4.00", imageSrc: "http://img.b2bpic.net/free-photo/top-view-chopped-zucchinis-bowl-with-chopped-zucchinis-wooden-kitchen-board-with-knife-with-cauliflower-lettuce-bucket-with-cucumber-zucchinis-isolated-wooden-wall_141793-75698.jpg" },
|
||||
]}
|
||||
title="Seasonal Harvest"
|
||||
description="Browse our latest selection of seasonal vegetables grown with love and care."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTen
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
title: "So Fresh!",
|
||||
quote: "The vegetables are so flavorful and fresh.",
|
||||
name: "Sarah Miller",
|
||||
role: "Parent",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-taking-care-her-garden_329181-16490.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
title: "Reliable",
|
||||
quote: "Consistent quality week after week.",
|
||||
name: "John Doe",
|
||||
role: "Customer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-family-choosing-groceries-showing-ok-gesture_171337-2355.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
title: "Amazing",
|
||||
quote: "Best tomatoes I've ever tasted.",
|
||||
name: "Chef Marco",
|
||||
role: "Chef",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-shot-head-chef-hands-cutting-fresh-organic-red-bell-pepper-while-cooking-gourmet-dish-dinner-service-gastronomy-expert-cutting-vegetables-greens-delicious-meal_482257-40143.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
title: "Great Quality",
|
||||
quote: "Everything is always perfect.",
|
||||
name: "Elena Ross",
|
||||
role: "Customer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-happy-after-shopping_23-2148660676.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
title: "Highly Recommended",
|
||||
quote: "My kids love the carrots!",
|
||||
name: "Mark Wilson",
|
||||
role: "Parent",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-eating-healthy_1428-679.jpg",
|
||||
},
|
||||
]}
|
||||
title="What Our Families Say"
|
||||
description="See why local families trust GreenHarvest Farm for their daily vegetables."
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTen
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "t1", title: "So Fresh!", quote: "The vegetables are so flavorful and fresh.", name: "Sarah Miller", role: "Parent", imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-taking-care-her-garden_329181-16490.jpg" },
|
||||
{ id: "t2", title: "Reliable", quote: "Consistent quality week after week.", name: "John Doe", role: "Customer", imageSrc: "http://img.b2bpic.net/free-photo/smiling-family-choosing-groceries-showing-ok-gesture_171337-2355.jpg" },
|
||||
{ id: "t3", title: "Amazing", quote: "Best tomatoes I've ever tasted.", name: "Chef Marco", role: "Chef", imageSrc: "http://img.b2bpic.net/free-photo/close-up-shot-head-chef-hands-cutting-fresh-organic-red-bell-pepper-while-cooking-gourmet-dish-dinner-service-gastronomy-expert-cutting-vegetables-greens-delicious-meal_482257-40143.jpg" },
|
||||
{ id: "t4", title: "Great Quality", quote: "Everything is always perfect.", name: "Elena Ross", role: "Customer", imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-happy-after-shopping_23-2148660676.jpg" },
|
||||
{ id: "t5", title: "Highly Recommended", quote: "My kids love the carrots!", name: "Mark Wilson", role: "Parent", imageSrc: "http://img.b2bpic.net/free-photo/woman-eating-healthy_1428-679.jpg" },
|
||||
]}
|
||||
title="What Our Families Say"
|
||||
description="See why local families trust GreenHarvest Farm for their daily vegetables."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SocialProofOne
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"Certified Organic",
|
||||
"Local Farm Hub",
|
||||
"Sustainable Earth",
|
||||
"Fresh Produce Co",
|
||||
"Green Growers",
|
||||
"Community Supported",
|
||||
"Farmer Trusted",
|
||||
]}
|
||||
title="Our Partnerships"
|
||||
description="Proudly supporting sustainable farming initiatives across the country."
|
||||
/>
|
||||
</div>
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SocialProofOne
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
names={["Certified Organic", "Local Farm Hub", "Sustainable Earth", "Fresh Produce Co", "Green Growers", "Community Supported", "Farmer Trusted"]}
|
||||
title="Our Partnerships"
|
||||
description="Proudly supporting sustainable farming initiatives across the country."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitText
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "Are you organic?",
|
||||
content: "Yes, we are certified organic.",
|
||||
},
|
||||
{
|
||||
id: "q2",
|
||||
title: "Do you deliver?",
|
||||
content: "We offer local home delivery weekly.",
|
||||
},
|
||||
{
|
||||
id: "q3",
|
||||
title: "Can I visit?",
|
||||
content: "Yes, we welcome visitors on weekends!",
|
||||
},
|
||||
]}
|
||||
sideTitle="Frequently Asked"
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitText
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{ id: "q1", title: "Are you organic?", content: "Yes, we are certified organic." },
|
||||
{ id: "q2", title: "Do you deliver?", content: "We offer local home delivery weekly." },
|
||||
{ id: "q3", title: "Can I visit?", content: "Yes, we welcome visitors on weekends!" },
|
||||
]}
|
||||
sideTitle="Frequently Asked"
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
text="Ready to get fresh produce? Contact our team for subscription inquiries."
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Us",
|
||||
href: "mailto:hello@greenharvest.com",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
text="Ready to get fresh produce? Contact our team for subscription inquiries."
|
||||
buttons={[{ text: "Contact Us", href: "mailto:hello@greenharvest.com" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Products",
|
||||
href: "#products",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "FAQs",
|
||||
href: "#faq",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="GreenHarvest Farm"
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{ items: [{ label: "About Us", href: "#about" }, { label: "Products", href: "#products" }] },
|
||||
{ items: [{ label: "FAQs", href: "#faq" }, { label: "Contact", href: "#contact" }] },
|
||||
]}
|
||||
logoText="GreenHarvest Farm"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user