Merge version_1 into main #1
211
src/app/page.tsx
211
src/app/page.tsx
@@ -32,26 +32,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Our Story",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "products",
|
||||
},
|
||||
{
|
||||
name: "Coffee Notes",
|
||||
id: "features",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "testimonials",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Our Story", id: "about" },
|
||||
{ name: "Menu", id: "products" },
|
||||
{ name: "Coffee Notes", id: "features" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Earthy Brew"
|
||||
/>
|
||||
@@ -59,33 +44,15 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDualMedia
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
title="Simplicity in Every Cup"
|
||||
description="Experience the quiet ritual of hand-roasted coffee, ethically sourced and crafted for the mindful morning."
|
||||
tag="Small Batch Artisans"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-albino-woman-sitting-table_23-2150171835.jpg",
|
||||
imageAlt: "Minimalist Coffee Shop",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-albino-woman-sitting-table_23-2150171835.jpg", imageAlt: "Minimalist Coffee Shop"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-coffee-with-copy-space_23-2148464840.jpg",
|
||||
imageAlt: "Latte Art Preparation",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-friends-drinking-coffee_23-2148395430.jpg",
|
||||
imageAlt: "Low angle friends drinking coffee",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cafe-interior-with-orange-sofa-three-tables-three-black-chairs_181624-8624.jpg",
|
||||
imageAlt: "Cafe interior with an orange sofa",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/interior-cafe-with-brick-walls_53876-153337.jpg",
|
||||
imageAlt: "Interior of a cafe with brick walls",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-coffee-with-copy-space_23-2148464840.jpg", imageAlt: "Latte Art Preparation"},
|
||||
]}
|
||||
mediaAnimation="blur-reveal"
|
||||
rating={5}
|
||||
@@ -109,42 +76,9 @@ export default function LandingPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Ethiopian Yirgacheffe",
|
||||
price: "$18",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-barista-white-t-shirt-jeans-pouring-coffee-beans-into-modern-small-burr-grinder_346278-1114.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Cold Brew Essence",
|
||||
price: "$6",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-coffee-cup_23-2149600693.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Classic Butter Croissant",
|
||||
price: "$4",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tasty-coffee-croissant-breakfast_23-2148230538.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Signature Oat Latte",
|
||||
price: "$6",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-man-looking-away-medium-shot_23-2148422427.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "House Espresso Roast",
|
||||
price: "$22",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-coffee-beans-beige-background_23-2148623198.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Pour-Over Starter Kit",
|
||||
price: "$45",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/arrangement-with-coffee-machine-cup_23-2148892895.jpg",
|
||||
},
|
||||
{ id: "p1", name: "Ethiopian Yirgacheffe", price: "$18", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-barista-white-t-shirt-jeans-pouring-coffee-beans-into-modern-small-burr-grinder_346278-1114.jpg" },
|
||||
{ id: "p2", name: "Cold Brew Essence", price: "$6", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-coffee-cup_23-2149600693.jpg" },
|
||||
{ id: "p3", name: "Classic Butter Croissant", price: "$4", imageSrc: "http://img.b2bpic.net/free-photo/tasty-coffee-croissant-breakfast_23-2148230538.jpg" },
|
||||
]}
|
||||
title="Signature Roasts & Bites"
|
||||
description="Hand-picked offerings for those who appreciate the craft."
|
||||
@@ -155,22 +89,11 @@ export default function LandingPage() {
|
||||
<FeatureBorderGlow
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="blur-reveal"
|
||||
features={[
|
||||
{
|
||||
title: "Direct Trade",
|
||||
description: "We work directly with farmers to ensure fair living wages.",
|
||||
icon: Shield,
|
||||
},
|
||||
{
|
||||
title: "Slow Roasted",
|
||||
description: "Small-batch roasting brings out the natural nuance.",
|
||||
icon: Flame,
|
||||
},
|
||||
{
|
||||
title: "Eco-Conscious",
|
||||
description: "Compostable packaging is at the heart of our operations.",
|
||||
icon: Leaf,
|
||||
},
|
||||
{ title: "Direct Trade", description: "We work directly with farmers to ensure fair living wages.", icon: Shield },
|
||||
{ title: "Slow Roasted", description: "Small-batch roasting brings out the natural nuance.", icon: Flame },
|
||||
{ title: "Eco-Conscious", description: "Compostable packaging is at the heart of our operations.", icon: Leaf },
|
||||
]}
|
||||
title="Why Our Coffee Matters"
|
||||
description="Ethical sourcing meets precise roasting to bring you the cleanest cup possible."
|
||||
@@ -184,21 +107,9 @@ export default function LandingPage() {
|
||||
gridVariant="bento-grid"
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "2.4K",
|
||||
description: "Cups served daily",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "15+",
|
||||
description: "Global partnerships",
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "100%",
|
||||
description: "Sustainable sourcing",
|
||||
},
|
||||
{ id: "m1", value: "2.4K", description: "Cups served daily" },
|
||||
{ id: "m2", value: "15+", description: "Global partnerships" },
|
||||
{ id: "m3", value: "100%", description: "Sustainable sourcing" },
|
||||
]}
|
||||
title="Coffee by the Numbers"
|
||||
description="Our impact, cup by cup."
|
||||
@@ -210,46 +121,8 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
title: "The Perfect Roast",
|
||||
quote: "I've never tasted an Ethiopian roast this clean.",
|
||||
name: "Sarah J.",
|
||||
role: "Designer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-african-woman-student-sitting-cafe-smiling-drinking-coffee_176420-12326.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
title: "Daily Essential",
|
||||
quote: "My morning just isn't the same without this brew.",
|
||||
name: "Mark D.",
|
||||
role: "Architect",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-friends-having-good-time_23-2148395331.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
title: "Truly Ethical",
|
||||
quote: "Knowing how they source their beans makes it better.",
|
||||
name: "Emily R.",
|
||||
role: "Researcher",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-portrait_23-2148830347.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
title: "Exceptional Service",
|
||||
quote: "Friendly faces and the best latte in town.",
|
||||
name: "David K.",
|
||||
role: "Creative",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-reading-book-drinking-coffee_1303-21574.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
title: "Freshness Guaranteed",
|
||||
quote: "Always fresh, always roasted to perfection.",
|
||||
name: "Anna P.",
|
||||
role: "Writer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-cafe-enjoying-book_23-2150064696.jpg",
|
||||
},
|
||||
{ id: "t1", title: "The Perfect Roast", quote: "I've never tasted an Ethiopian roast this clean.", name: "Sarah J.", role: "Designer", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-african-woman-student-sitting-cafe-smiling-drinking-coffee_176420-12326.jpg" },
|
||||
{ id: "t2", title: "Daily Essential", quote: "My morning just isn't the same without this brew.", name: "Mark D.", role: "Architect", imageSrc: "http://img.b2bpic.net/free-photo/low-angle-friends-having-good-time_23-2148395331.jpg" },
|
||||
]}
|
||||
title="A Morning Ritual"
|
||||
description="What our daily regulars have to say."
|
||||
@@ -261,21 +134,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Do you deliver beans?",
|
||||
content: "Yes, we ship nationwide every Tuesday.",
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Are your beans organic?",
|
||||
content: "We source high-altitude beans grown naturally.",
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Do you offer subscriptions?",
|
||||
content: "We have a flexible monthly delivery plan.",
|
||||
},
|
||||
{ id: "f1", title: "Do you deliver beans?", content: "Yes, we ship nationwide every Tuesday." },
|
||||
{ id: "f2", title: "Are your beans organic?", content: "We source high-altitude beans grown naturally." },
|
||||
{ id: "f3", title: "Do you offer subscriptions?", content: "We have a flexible monthly delivery plan." },
|
||||
]}
|
||||
title="Common Questions"
|
||||
description="Everything you need to know about our craft."
|
||||
@@ -286,21 +147,13 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Visit Us"
|
||||
title="Start Your Ritual"
|
||||
description="Come visit our shop or reach out for wholesale inquiries."
|
||||
buttons={[
|
||||
{
|
||||
text: "Get Directions",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
text: "Message Us",
|
||||
href: "#",
|
||||
},
|
||||
{ text: "Get Directions", href: "#" },
|
||||
{ text: "Message Us", href: "#" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -310,16 +163,8 @@ export default function LandingPage() {
|
||||
logoText="Earthy Brew"
|
||||
copyrightText="© 2025 Earthy Brew. All rights reserved."
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Instagram,
|
||||
href: "#",
|
||||
ariaLabel: "Instagram",
|
||||
},
|
||||
{
|
||||
icon: Twitter,
|
||||
href: "#",
|
||||
ariaLabel: "Twitter",
|
||||
},
|
||||
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
|
||||
{ icon: Twitter, href: "#", ariaLabel: "Twitter" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user