Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c6b3a70f89 | |||
| 947e56a6a7 |
111
src/app/page.tsx
111
src/app/page.tsx
@@ -80,13 +80,19 @@ export default function LandingPage() {
|
||||
buttonAnimation="slide-up"
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Premium Ingredients", description: "We source only the finest beans and organic flours from local farms and sustainable suppliers.", icon: Leaf
|
||||
title: "Premium Ingredients",
|
||||
description: "We source only the finest beans and organic flours from local farms and sustainable suppliers.",
|
||||
icon: Leaf
|
||||
},
|
||||
{
|
||||
title: "Artisanal Process", description: "Each item is handcrafted using time-honored methods passed down through generations.", icon: Hammer
|
||||
title: "Artisanal Process",
|
||||
description: "Each item is handcrafted using time-honored methods passed down through generations.",
|
||||
icon: Hammer
|
||||
},
|
||||
{
|
||||
title: "Community Focus", description: "We're more than a shop—we're a gathering place for coffee lovers and bread enthusiasts.", icon: Users
|
||||
title: "Community Focus",
|
||||
description: "We're more than a shop—we're a gathering place for coffee lovers and bread enthusiasts.",
|
||||
icon: Users
|
||||
}
|
||||
]}
|
||||
imageSrc="https://img.b2bpic.net/free-photo/baker-holding-fresh-bread-hands_169016-1421.jpg"
|
||||
@@ -107,15 +113,24 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
title: "Sustainably Sourced Coffee", description: "Our coffee beans are ethically sourced from small farms across Central and South America, ensuring the highest quality and supporting local communities.", imageSrc: "https://img.b2bpic.net/free-photo/wooden-board-with-coffee-beans-marble-background-high-quality-photo_114579-67932.jpg", imageAlt: "Organic coffee beans in a rustic wooden bowl"
|
||||
title: "Sustainably Sourced Coffee",
|
||||
description: "Our coffee beans are ethically sourced from small farms across Central and South America, ensuring the highest quality and supporting local communities.",
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/wooden-board-with-coffee-beans-marble-background-high-quality-photo_114579-67932.jpg",
|
||||
imageAlt: "Organic coffee beans in a rustic wooden bowl"
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Daily Fresh Bread Selection", description: "Each morning, we bake an array of artisanal breads using traditional techniques and locally milled flour for that authentic, wholesome taste.", imageSrc: "https://img.b2bpic.net/free-photo/baker-holds-homemade-craft-bread-his-hands_166373-749.jpg", imageAlt: "Freshly baked sourdough bread on a wooden cutting board"
|
||||
title: "Daily Fresh Bread Selection",
|
||||
description: "Each morning, we bake an array of artisanal breads using traditional techniques and locally milled flour for that authentic, wholesome taste.",
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/baker-holds-homemade-craft-bread-his-hands_166373-749.jpg",
|
||||
imageAlt: "Freshly baked sourdough bread on a wooden cutting board"
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Cozy & Inviting Atmosphere", description: "Our warm, rustic space is designed to make every visit feel like coming home, perfect for enjoying your morning brew or afternoon treat.", imageSrc: "https://img.b2bpic.net/free-photo/modern-cafe-interior-design-with-wooden-wall-green-wall-grey-chairs_191095-99746.jpg", imageAlt: "Cozy interior of the café with wooden tables and warm lighting"
|
||||
title: "Cozy & Inviting Atmosphere",
|
||||
description: "Our warm, rustic space is designed to make every visit feel like coming home, perfect for enjoying your morning brew or afternoon treat.",
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/modern-cafe-interior-design-with-wooden-wall-green-wall-grey-chairs_191095-99746.jpg",
|
||||
imageAlt: "Cozy interior of the café with wooden tables and warm lighting"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
@@ -131,13 +146,28 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "coffee-1", name: "Ethiopian Single Origin", price: "$14.99", imageSrc: "https://img.b2bpic.net/free-photo/jar-with-walnuts-wooden-board_95678-266.jpg", imageAlt: "Ethiopian single origin coffee beans in a rustic ceramic cup", initialQuantity: 1
|
||||
id: "coffee-1",
|
||||
name: "Ethiopian Single Origin",
|
||||
price: "$14.99",
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/jar-with-walnuts-wooden-board_95678-266.jpg",
|
||||
imageAlt: "Ethiopian single origin coffee beans in a rustic ceramic cup",
|
||||
initialQuantity: 1
|
||||
},
|
||||
{
|
||||
id: "bread-1", name: "Sourdough Boule", price: "$6.50", imageSrc: "https://img.b2bpic.net/free-photo/set-breads-stored-sale-consumption-supermarket_169016-49230.jpg", imageAlt: "Freshly baked sourdough boule with golden crust", initialQuantity: 1
|
||||
id: "bread-1",
|
||||
name: "Sourdough Boule",
|
||||
price: "$6.50",
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/set-breads-stored-sale-consumption-supermarket_169016-49230.jpg",
|
||||
imageAlt: "Freshly baked sourdough boule with golden crust",
|
||||
initialQuantity: 1
|
||||
},
|
||||
{
|
||||
id: "coffee-2", name: "Colombian Medium Roast", price: "$13.99", imageSrc: "https://img.b2bpic.net/free-photo/closeup-male-barista-hands-pouring-alternative-coffee-from-chemex_176420-7897.jpg", imageAlt: "Colombian medium roast coffee beans served in a wooden spoon", initialQuantity: 1
|
||||
id: "coffee-2",
|
||||
name: "Colombian Medium Roast",
|
||||
price: "$13.99",
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/closeup-male-barista-hands-pouring-alternative-coffee-from-chemex_176420-7897.jpg",
|
||||
imageAlt: "Colombian medium roast coffee beans served in a wooden spoon",
|
||||
initialQuantity: 1
|
||||
}
|
||||
]}
|
||||
/>
|
||||
@@ -147,29 +177,53 @@ export default function LandingPage() {
|
||||
<TestimonialCardOne
|
||||
testimonials={[
|
||||
{
|
||||
id: "testimonial-1", name: "Maria Rodriguez", role: "Barista", company: "Brew & Bloom Café", rating: 5,
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/people-drinking-coffee-spacious-cafeteria_23-2150423991.jpg", imageAlt: "Maria Rodriguez, barista at Brew & Bloom Café"
|
||||
id: "testimonial-1",
|
||||
name: "Sarah Thompson",
|
||||
role: "Food Blogger",
|
||||
company: "Daily Delights",
|
||||
rating: 5,
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/abstract-luxury-gradient-blue-background_53876-120942.jpg",
|
||||
imageAlt: "Sarah Thompson, food blogger at Daily Delights"
|
||||
},
|
||||
{
|
||||
id: "testimonial-2", name: "James Chen", role: "Artisan Baker", company: "Golden Crust Bakery", rating: 5,
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/hands-kneading-dough-homemade-pastry-bread_74855-5670.jpg", imageAlt: "James Chen, artisan baker at Golden Crust Bakery"
|
||||
id: "testimonial-2",
|
||||
name: "Michael O'Brien",
|
||||
role: "Restaurant Owner",
|
||||
company: "The Daily Grind",
|
||||
rating: 5,
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/futuristic-moon-background_23-2150930890.jpg",
|
||||
imageAlt: "Michael O'Brien, restaurant owner at The Daily Grind"
|
||||
},
|
||||
{
|
||||
id: "testimonial-3", name: "Sophie Martinez", role: "Coffee Enthusiast", company: "Local Roasters", rating: 5,
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/smiley-man-posing-apron-with-coffee-pot_23-2148366687.jpg", imageAlt: "Sophie Martinez, coffee enthusiast"
|
||||
id: "testimonial-3",
|
||||
name: "Emma Wilson",
|
||||
role: "Wellness Coach",
|
||||
company: "Healthy Living Hub",
|
||||
rating: 5,
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/futuristic-city-architecture_23-2151918947.jpg",
|
||||
imageAlt: "Emma Wilson, wellness coach at Healthy Living Hub"
|
||||
},
|
||||
{
|
||||
id: "testimonial-4",
|
||||
name: "David Park",
|
||||
role: "Chef",
|
||||
company: "Modern Kitchen Studio",
|
||||
rating: 5,
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/futuristic-moon-background_23-2150930734.jpg",
|
||||
imageAlt: "David Park, chef at Modern Kitchen Studio"
|
||||
}
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
title="What Our Community Says"
|
||||
description="Hear from fellow coffee lovers and bread enthusiasts who have experienced the magic of our premium artisanal goods."
|
||||
tag="Customer Favorites"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
gridVariant="four-columns-all-equal-width"
|
||||
animationType="fade-in"
|
||||
title="Loved by Our Customers"
|
||||
description="Discover why coffee lovers and bread enthusiasts trust Bread & Bean Co. for quality, freshness, and exceptional taste."
|
||||
tag="Trusted Reviews"
|
||||
tagIcon={Star}
|
||||
tagAnimation="fade-in"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
carouselMode="buttons"
|
||||
uniformGridCustomHeightClasses="min-h-95 2xl:min-h-105"
|
||||
carouselMode="auto"
|
||||
uniformGridCustomHeightClasses="min-h-90 2xl:min-h-100"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -197,7 +251,8 @@ export default function LandingPage() {
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Explore", items: [
|
||||
title: "Explore",
|
||||
items: [
|
||||
{ label: "Our Story", href: "#about-section" },
|
||||
{ label: "Products", href: "#product-section" },
|
||||
{ label: "Specialty Coffee", href: "#features-section" },
|
||||
@@ -205,7 +260,8 @@ export default function LandingPage() {
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Support", items: [
|
||||
title: "Support",
|
||||
items: [
|
||||
{ label: "Contact Us", href: "#contact-section" },
|
||||
{ label: "FAQs", href: "#contact-section" },
|
||||
{ label: "Shipping Policy", href: "#contact-section" },
|
||||
@@ -213,7 +269,8 @@ export default function LandingPage() {
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
title: "Connect",
|
||||
items: [
|
||||
{ label: "Instagram", href: "#" },
|
||||
{ label: "Facebook", href: "#" },
|
||||
{ label: "Newsletter", href: "#" },
|
||||
|
||||
Reference in New Issue
Block a user