Merge version_1 into main #2
@@ -7,112 +7,34 @@ import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Shop",
|
||||
id: "/shop",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="Monte-Bellaria"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-section" data-section="about-section">
|
||||
<MediaAbout
|
||||
useInvertedBackground={false}
|
||||
title="Where Tradition Meets Intelligence"
|
||||
description="Our mission is simple: use AI to perfect the delicate balance of the California climate. By monitoring soil, moisture, and micro-climates, we craft products of unrivaled quality."
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/close-up-of-a-person-tending-to-olive-tr-1774817418912-040a624e.png?_wi=3"
|
||||
imageAlt="Smart farming tech"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metric" data-section="metric">
|
||||
<MetricCardEleven
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Growth Stats"
|
||||
description="Our progress metrics."
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "1200",
|
||||
title: "Trees Planted",
|
||||
description: "Our thriving grove.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/close-up-of-a-person-tending-to-olive-tr-1774817418912-040a624e.png?_wi=4",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "5+",
|
||||
title: "Years Innovation",
|
||||
description: "Ongoing research.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/close-up-of-a-person-tending-to-olive-tr-1774817418912-040a624e.png?_wi=5",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Monte-Bellaria",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Shop",
|
||||
href: "/shop",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 Monte-Bellaria di California."
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple navItems={[{name: "Home", id: "/"}, {name: "About", id: "/about"}, {name: "Shop", id: "/shop"}, {name: "Contact", id: "/contact"}]} brandName="Monte-Bellaria" />
|
||||
</div>
|
||||
<div id="about-section" data-section="about-section">
|
||||
<MediaAbout useInvertedBackground={false} title="Where Tradition Meets Intelligence" description="Our mission is simple: use AI to perfect the delicate balance of the California climate. By monitoring soil, moisture, and micro-climates, we craft products of unrivaled quality." imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/close-up-of-a-person-tending-to-olive-tr-1774817418912-040a624e.png" imageAlt="Smart farming tech" />
|
||||
</div>
|
||||
<div id="metric" data-section="metric">
|
||||
<MetricCardEleven animationType="slide-up" textboxLayout="default" useInvertedBackground={false} title="Growth Stats" description="Our progress metrics." metrics={[{id: "m1", value: "1200", title: "Trees Planted", description: "Our thriving grove.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/close-up-of-a-person-tending-to-olive-tr-1774817418912-040a624e.png"}, {id: "m2", value: "5+", title: "Years Innovation", description: "Ongoing research.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/close-up-of-a-person-tending-to-olive-tr-1774817418912-040a624e.png"}]} />
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal columns={[{title: "Monte-Bellaria", items: [{label: "About Us", href: "/about"}, {label: "Shop", href: "/shop"}, {label: "Contact", href: "/contact"}]}, {title: "Legal", items: [{label: "Privacy Policy", href: "#"}, {label: "Terms of Service", href: "#"}]}]} copyrightText="© 2024 Monte-Bellaria di California." />
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -7,116 +7,34 @@ import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Shop",
|
||||
id: "/shop",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="Monte-Bellaria"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-cta" data-section="contact-cta">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
tag="Inquire"
|
||||
title="Get in Touch"
|
||||
description="Have questions about our harvest or our technology? We would love to hear from you."
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Us",
|
||||
href: "mailto:hello@montebellaria.ai",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqBase
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Support FAQ"
|
||||
description="Need immediate answers?"
|
||||
faqsAnimation="blur-reveal"
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Shipping Times",
|
||||
content: "3-5 business days.",
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Returns",
|
||||
content: "14-day hassle-free returns.",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Monte-Bellaria",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Shop",
|
||||
href: "/shop",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 Monte-Bellaria di California."
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple navItems={[{name: "Home", id: "/"}, {name: "About", id: "/about"}, {name: "Shop", id: "/shop"}, {name: "Contact", id: "/contact"}]} brandName="Monte-Bellaria" />
|
||||
</div>
|
||||
<div id="contact-cta" data-section="contact-cta">
|
||||
<ContactCTA useInvertedBackground={false} background={{variant: "plain"}} tag="Inquire" title="Get in Touch" description="Have questions about our harvest or our technology? We would love to hear from you." buttons={[{text: "Contact Us", href: "mailto:hello@montebellaria.ai"}]} />
|
||||
</div>
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqBase textboxLayout="default" useInvertedBackground={false} title="Support FAQ" description="Need immediate answers?" faqsAnimation="blur-reveal" faqs={[{id: "f1", title: "Shipping Times", content: "3-5 business days."}, {id: "f2", title: "Returns", content: "14-day hassle-free returns."}]} />
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal columns={[{title: "Monte-Bellaria", items: [{label: "About Us", href: "/about"}, {label: "Shop", href: "/shop"}, {label: "Contact", href: "/contact"}]}, {title: "Legal", items: [{label: "Privacy Policy", href: "#"}, {label: "Terms of Service", href: "#"}]}]} copyrightText="© 2024 Monte-Bellaria di California." />
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
237
src/app/page.tsx
237
src/app/page.tsx
@@ -16,213 +16,40 @@ export default function LandingPage() {
|
||||
defaultButtonVariant="hover-bubble"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Shop",
|
||||
id: "/shop",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="Monte-Bellaria"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardScroll
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
title="Precision Agriculture, Redefined."
|
||||
description="Monte-Bellaria di California merges deep-rooted artisanal heritage with cutting-edge AI insights to cultivate the extraordinary."
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/aerial-shot-of-monte-bellaria-vineyard-i-1774817418324-0b67be0b.png"
|
||||
imageAlt="Aerial vineyard view"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTen
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
title: "Excellence",
|
||||
quote: "The quality of the lavender is beyond anything I've experienced. Truly premium.",
|
||||
name: "Julian Thorne",
|
||||
role: "Chef",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
title: "Natural Beauty",
|
||||
quote: "So happy I discovered Monte-Bellaria. The AI focus really shows in the purity.",
|
||||
name: "Sarah Miller",
|
||||
role: "Designer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-sitting-library_273609-15845.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
title: "Innovation",
|
||||
quote: "As an engineer, I appreciate the transparency and data-driven farming methods.",
|
||||
name: "Robert Chen",
|
||||
role: "Engineer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-cheerful-happy-girl-smiling-laughing_176420-9604.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
title: "Outstanding",
|
||||
quote: "Simply wonderful products that speak for themselves.",
|
||||
name: "Elena Rossi",
|
||||
role: "Artist",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/image-young-confident-woman-casual-outfit-looking-happy-standing-against-white-background_1258-218493.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
title: "Purity",
|
||||
quote: "The texture and fragrance of the lavender products are unmatched.",
|
||||
name: "David Wu",
|
||||
role: "Sommelier",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg?_wi=2",
|
||||
},
|
||||
]}
|
||||
title="Voices of Quality"
|
||||
description="The difference is clear in every harvest."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metric" data-section="metric">
|
||||
<MetricCardEleven
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Impact by Numbers"
|
||||
description="Evidence of our commitment to sustainable and intelligent agriculture."
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "40%",
|
||||
title: "Water Reduction",
|
||||
description: "AI-led precision irrigation saves 40% more water than traditional methods.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/close-up-of-a-person-tending-to-olive-tr-1774817418912-040a624e.png?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "15+",
|
||||
title: "Soil Sensors",
|
||||
description: "Connected sensor network across every acre of our vineyard.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/high-end-glass-bottle-of-organic-lavende-1774817418972-002071d2.png?_wi=1",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="blog" data-section="blog">
|
||||
<BlogCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Latest Insights"
|
||||
description="Read more about our journey in technology and agriculture."
|
||||
blogs={[
|
||||
{
|
||||
id: "b1",
|
||||
category: "Technology",
|
||||
title: "The Future of Smart Irrigation",
|
||||
excerpt: "How AI monitors water levels at a micro-climate level.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/close-up-of-a-person-tending-to-olive-tr-1774817418912-040a624e.png?_wi=2",
|
||||
authorName: "Jane Doe",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/young-woman-sitting-library_273609-15845.jpg",
|
||||
date: "Oct 2024",
|
||||
},
|
||||
{
|
||||
id: "b2",
|
||||
category: "Artisanal",
|
||||
title: "Lavender Harvesting 2024",
|
||||
excerpt: "The story behind this season's premium lavender crop.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/artisan-lavender-soap-bar-organic-textur-1774817420412-2eb77a40.png?_wi=1",
|
||||
authorName: "John Smith",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg",
|
||||
date: "Aug 2024",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqBase
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Frequently Asked Questions"
|
||||
description="Common inquiries regarding our farming philosophy and products."
|
||||
faqsAnimation="blur-reveal"
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "What is AI-optimized agriculture?",
|
||||
content: "It means using data, sensors, and machine learning to optimize every step of the growth process.",
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Are your products organic?",
|
||||
content: "Yes, we focus on sustainable practices that respect the land and human health.",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Monte-Bellaria",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Shop",
|
||||
href: "/shop",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 Monte-Bellaria di California."
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[{name: "Home", id: "/"}, {name: "About", id: "/about"}, {name: "Shop", id: "/shop"}, {name: "Contact", id: "/contact"}]}
|
||||
brandName="Monte-Bellaria"
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardScroll background={{variant: "plain"}} title="Precision Agriculture, Redefined." description="Monte-Bellaria di California merges deep-rooted artisanal heritage with cutting-edge AI insights to cultivate the extraordinary." imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/aerial-shot-of-monte-bellaria-vineyard-i-1774817418324-0b67be0b.png" imageAlt="Aerial vineyard view" />
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTen textboxLayout="default" useInvertedBackground={false} testimonials={[{id: "t1", title: "Excellence", quote: "The quality of the lavender is beyond anything I've experienced. Truly premium.", name: "Julian Thorne", role: "Chef", imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg"}, {id: "t2", title: "Natural Beauty", quote: "So happy I discovered Monte-Bellaria. The AI focus really shows in the purity.", name: "Sarah Miller", role: "Designer", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-sitting-library_273609-15845.jpg"}, {id: "t3", title: "Innovation", quote: "As an engineer, I appreciate the transparency and data-driven farming methods.", name: "Robert Chen", role: "Engineer", imageSrc: "http://img.b2bpic.net/free-photo/young-cheerful-happy-girl-smiling-laughing_176420-9604.jpg"}, {id: "t4", title: "Outstanding", quote: "Simply wonderful products that speak for themselves.", name: "Elena Rossi", role: "Artist", imageSrc: "http://img.b2bpic.net/free-photo/image-young-confident-woman-casual-outfit-looking-happy-standing-against-white-background_1258-218493.jpg"}, {id: "t5", title: "Purity", quote: "The texture and fragrance of the lavender products are unmatched.", name: "David Wu", role: "Sommelier", imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg"}]} title="Voices of Quality" description="The difference is clear in every harvest." />
|
||||
</div>
|
||||
<div id="metric" data-section="metric">
|
||||
<MetricCardEleven animationType="slide-up" textboxLayout="default" useInvertedBackground={false} title="Impact by Numbers" description="Evidence of our commitment to sustainable and intelligent agriculture." metrics={[{id: "m1", value: "40%", title: "Water Reduction", description: "AI-led precision irrigation saves 40% more water than traditional methods.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/close-up-of-a-person-tending-to-olive-tr-1774817418912-040a624e.png"}, {id: "m2", value: "15+", title: "Soil Sensors", description: "Connected sensor network across every acre of our vineyard.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/high-end-glass-bottle-of-organic-lavende-1774817418972-002071d2.png"}]} />
|
||||
</div>
|
||||
<div id="blog" data-section="blog">
|
||||
<BlogCardThree animationType="slide-up" textboxLayout="default" useInvertedBackground={false} title="Latest Insights" description="Read more about our journey in technology and agriculture." blogs={[{id: "b1", category: "Technology", title: "The Future of Smart Irrigation", excerpt: "How AI monitors water levels at a micro-climate level.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/close-up-of-a-person-tending-to-olive-tr-1774817418912-040a624e.png", authorName: "Jane Doe", authorAvatar: "http://img.b2bpic.net/free-photo/young-woman-sitting-library_273609-15845.jpg", date: "Oct 2024"}, {id: "b2", category: "Artisanal", title: "Lavender Harvesting 2024", excerpt: "The story behind this season's premium lavender crop.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/artisan-lavender-soap-bar-organic-textur-1774817420412-2eb77a40.png", authorName: "John Smith", authorAvatar: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg", date: "Aug 2024"}]} />
|
||||
</div>
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqBase textboxLayout="default" useInvertedBackground={false} title="Frequently Asked Questions" description="Common inquiries regarding our farming philosophy and products." faqsAnimation="blur-reveal" faqs={[{id: "f1", title: "What is AI-optimized agriculture?", content: "It means using data, sensors, and machine learning to optimize every step of the growth process."}, {id: "f2", title: "Are your products organic?", content: "Yes, we focus on sustainable practices that respect the land and human health."}]} />
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal columns={[{title: "Monte-Bellaria", items: [{label: "About Us", href: "/about"}, {label: "Shop", href: "/shop"}, {label: "Contact", href: "/contact"}]}, {title: "Legal", items: [{label: "Privacy Policy", href: "#"}, {label: "Terms of Service", href: "#"}]}]} copyrightText="© 2024 Monte-Bellaria di California." />
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -7,131 +7,34 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ShopPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Shop",
|
||||
id: "/shop",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="Monte-Bellaria"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="shop-catalog" data-section="shop-catalog">
|
||||
<ProductCardThree
|
||||
textboxLayout="split"
|
||||
gridVariant="one-large-right-three-stacked-left"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Reserve Lavender Oil",
|
||||
price: "$45.00",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/high-end-glass-bottle-of-organic-lavende-1774817418972-002071d2.png?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Estate Olive Oil",
|
||||
price: "$32.00",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/handcrafted-olive-oil-tin-simple-elegant-1774817418153-b4d7e87f.png?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Dried Lavender Sachets",
|
||||
price: "$18.00",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/artisan-lavender-soap-bar-organic-textur-1774817420412-2eb77a40.png?_wi=2",
|
||||
},
|
||||
]}
|
||||
title="Artisanal Collection"
|
||||
description="Experience the results of AI-optimized farming."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="product" data-section="product">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="Featured Favorites"
|
||||
description="Top customer picks."
|
||||
products={[
|
||||
{
|
||||
id: "fp1",
|
||||
name: "Lavender Bundle",
|
||||
price: "$60.00",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/high-end-glass-bottle-of-organic-lavende-1774817418972-002071d2.png?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "fp2",
|
||||
name: "Olive Gift Set",
|
||||
price: "$75.00",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/handcrafted-olive-oil-tin-simple-elegant-1774817418153-b4d7e87f.png?_wi=2",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Monte-Bellaria",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Shop",
|
||||
href: "/shop",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 Monte-Bellaria di California."
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple navItems={[{name: "Home", id: "/"}, {name: "About", id: "/about"}, {name: "Shop", id: "/shop"}, {name: "Contact", id: "/contact"}]} brandName="Monte-Bellaria" />
|
||||
</div>
|
||||
<div id="shop-catalog" data-section="shop-catalog">
|
||||
<ProductCardThree textboxLayout="split" gridVariant="one-large-right-three-stacked-left" animationType="slide-up" useInvertedBackground={false} products={[{id: "p1", name: "Reserve Lavender Oil", price: "$45.00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/high-end-glass-bottle-of-organic-lavende-1774817418972-002071d2.png"}, {id: "p2", name: "Estate Olive Oil", price: "$32.00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/handcrafted-olive-oil-tin-simple-elegant-1774817418153-b4d7e87f.png"}, {id: "p3", name: "Dried Lavender Sachets", price: "$18.00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/artisan-lavender-soap-bar-organic-textur-1774817420412-2eb77a40.png"}]} title="Artisanal Collection" description="Experience the results of AI-optimized farming." />
|
||||
</div>
|
||||
<div id="product" data-section="product">
|
||||
<ProductCardOne animationType="slide-up" textboxLayout="default" gridVariant="uniform-all-items-equal" useInvertedBackground={false} title="Featured Favorites" description="Top customer picks." products={[{id: "fp1", name: "Lavender Bundle", price: "$60.00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/high-end-glass-bottle-of-organic-lavende-1774817418972-002071d2.png"}, {id: "fp2", name: "Olive Gift Set", price: "$75.00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/handcrafted-olive-oil-tin-simple-elegant-1774817418153-b4d7e87f.png"}, {id: "fp3", name: "Olive Bundle", price: "$55.00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/handcrafted-olive-oil-tin-simple-elegant-1774817418153-b4d7e87f.png"}]} />
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal columns={[{title: "Monte-Bellaria", items: [{label: "About Us", href: "/about"}, {label: "Shop", href: "/shop"}, {label: "Contact", href: "/contact"}]}, {title: "Legal", items: [{label: "Privacy Policy", href: "#"}, {label: "Terms of Service", href: "#"}]}]} copyrightText="© 2024 Monte-Bellaria di California." />
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user