Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-04-15 15:25:25 +00:00

View File

@@ -12,7 +12,7 @@ import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaA
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import { CheckCircle, Star, Zap } from "lucide-react";
import { CheckCircle, Star, Zap, Sparkles } from "lucide-react";
export default function LandingPage() {
return (
@@ -32,22 +32,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "hero",
},
{
name: "About",
id: "about",
},
{
name: "Menu",
id: "menu",
},
{
name: "Contact",
id: "contact",
},
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Menu", id: "menu" },
{ name: "Contact", id: "contact" },
]}
brandName="Sweet Crumbs"
/>
@@ -58,69 +46,19 @@ export default function LandingPage() {
title="Freshly Baked Happiness Every Day"
description="Artisan treats made with love, tradition, and the finest ingredients for your daily delight."
testimonials={[
{
name: "Alice M.",
handle: "@alicem",
testimonial: "The best croissants in town!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/woman-blue-hat-sits-windowsill-cafe_8353-194.jpg?_wi=1",
imageAlt: "fresh baked bread pastry morning",
},
{
name: "Bob K.",
handle: "@bobk",
testimonial: "Absolutely love their sourdough bread.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/bakery-atmospheric-photo_1321-4640.jpg?_wi=1",
imageAlt: "fresh baked bread pastry morning",
},
{
name: "Charlie D.",
handle: "@charlied",
testimonial: "Perfect cakes for every occasion.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/delicious-cake-glass-arrangement_23-2149030731.jpg?_wi=1",
imageAlt: "fresh baked bread pastry morning",
},
{
name: "Diana S.",
handle: "@dianas",
testimonial: "Warm and inviting service every time.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/set-croissants_23-2149395340.jpg?_wi=1",
imageAlt: "fresh baked bread pastry morning",
},
{
name: "Ethan P.",
handle: "@ethanp",
testimonial: "The pastries are always so fresh!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-sweet-biscuits-light-dark-background_140725-131767.jpg?_wi=1",
imageAlt: "fresh baked bread pastry morning",
},
{ name: "Alice M.", handle: "@alicem", testimonial: "The best croissants in town!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/woman-blue-hat-sits-windowsill-cafe_8353-194.jpg", imageAlt: "fresh baked bread pastry morning" },
{ name: "Bob K.", handle: "@bobk", testimonial: "Absolutely love their sourdough bread.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/bakery-atmospheric-photo_1321-4640.jpg", imageAlt: "fresh baked bread pastry morning" },
{ name: "Charlie D.", handle: "@charlied", testimonial: "Perfect cakes for every occasion.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/delicious-cake-glass-arrangement_23-2149030731.jpg", imageAlt: "fresh baked bread pastry morning" },
{ name: "Diana S.", handle: "@dianas", testimonial: "Warm and inviting service every time.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/set-croissants_23-2149395340.jpg", imageAlt: "fresh baked bread pastry morning" },
{ name: "Ethan P.", handle: "@ethanp", testimonial: "The pastries are always so fresh!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-sweet-biscuits-light-dark-background_140725-131767.jpg", imageAlt: "fresh baked bread pastry morning" }
]}
imageSrc="http://img.b2bpic.net/free-photo/woman-blue-hat-sits-windowsill-cafe_8353-194.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/woman-blue-hat-sits-windowsill-cafe_8353-194.jpg"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/china-stairs-stone-tiles-old-water_1417-577.jpg",
alt: "Customer 1",
},
{
src: "http://img.b2bpic.net/free-photo/waitress-offering-macarons_23-2147985067.jpg",
alt: "Customer 2",
},
{
src: "http://img.b2bpic.net/free-photo/illuminated-bar-counter-inside-modern-drink-establishment-generated-by-ai_188544-22453.jpg",
alt: "Customer 3",
},
{
src: "http://img.b2bpic.net/free-photo/shoemaker-workshop-making-shoes_171337-12284.jpg",
alt: "Customer 4",
},
{
src: "http://img.b2bpic.net/free-photo/front-view-sliced-bread-with-brown-sugar-cubes_23-2148695488.jpg",
alt: "Customer 5",
},
{ src: "http://img.b2bpic.net/free-photo/china-stairs-stone-tiles-old-water_1417-577.jpg", alt: "Customer 1" },
{ src: "http://img.b2bpic.net/free-photo/waitress-offering-macarons_23-2147985067.jpg", alt: "Customer 2" },
{ src: "http://img.b2bpic.net/free-photo/illuminated-bar-counter-inside-modern-drink-establishment-generated-by-ai_188544-22453.jpg", alt: "Customer 3" },
{ src: "http://img.b2bpic.net/free-photo/shoemaker-workshop-making-shoes_171337-12284.jpg", alt: "Customer 4" },
{ src: "http://img.b2bpic.net/free-photo/front-view-sliced-bread-with-brown-sugar-cubes_23-2148695488.jpg", alt: "Customer 5" }
]}
avatarText="Loved by 500+ locals"
/>
@@ -132,20 +70,11 @@ export default function LandingPage() {
title="Our Story"
description="Sweet Crumbs began in a home kitchen with a simple passion for quality ingredients and family recipes that have been passed down for generations."
metrics={[
{
value: "10+",
title: "Years Baking",
},
{
value: "50+",
title: "Secret Recipes",
},
{
value: "100%",
title: "Natural Ingredients",
},
{ value: "10+", title: "Years Baking" },
{ value: "50+", title: "Secret Recipes" },
{ value: "100%", title: "Natural Ingredients" }
]}
imageSrc="http://img.b2bpic.net/free-photo/bakery-atmospheric-photo_1321-4640.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/bakery-atmospheric-photo_1321-4640.jpg"
mediaAnimation="slide-up"
metricsAnimation="slide-up"
/>
@@ -158,48 +87,12 @@ export default function LandingPage() {
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={true}
products={[
{
id: "p1",
name: "Classic Cake",
price: "$25",
variant: "Cakes",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-cake-glass-arrangement_23-2149030731.jpg?_wi=2",
},
{
id: "p2",
name: "Butter Croissant",
price: "$4",
variant: "Pastries",
imageSrc: "http://img.b2bpic.net/free-photo/set-croissants_23-2149395340.jpg?_wi=2",
},
{
id: "p3",
name: "Choco Cookies",
price: "$3",
variant: "Cookies",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-sweet-biscuits-light-dark-background_140725-131767.jpg?_wi=2",
},
{
id: "p4",
name: "Sourdough Loaf",
price: "$8",
variant: "Breads",
imageSrc: "http://img.b2bpic.net/free-photo/round-freshly-baked-rustic-rye-round-bread-top-view-with-copy-space_166373-3246.jpg",
},
{
id: "p5",
name: "Berry Tart",
price: "$6",
variant: "Pastries",
imageSrc: "http://img.b2bpic.net/free-photo/homemade-delicious-rustic-summer-berry-tartles_114579-11035.jpg",
},
{
id: "p6",
name: "Vanilla Cupcake",
price: "$5",
variant: "Cakes",
imageSrc: "http://img.b2bpic.net/free-photo/yummy-birthday-muffin-blue-background_23-2148351869.jpg",
},
{ id: "p1", name: "Classic Cake", price: "$25", variant: "Cakes", imageSrc: "http://img.b2bpic.net/free-photo/delicious-cake-glass-arrangement_23-2149030731.jpg" },
{ id: "p2", name: "Butter Croissant", price: "$4", variant: "Pastries", imageSrc: "http://img.b2bpic.net/free-photo/set-croissants_23-2149395340.jpg" },
{ id: "p3", name: "Choco Cookies", price: "$3", variant: "Cookies", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-sweet-biscuits-light-dark-background_140725-131767.jpg" },
{ id: "p4", name: "Sourdough Loaf", price: "$8", variant: "Breads", imageSrc: "http://img.b2bpic.net/free-photo/round-freshly-baked-rustic-rye-round-bread-top-view-with-copy-space_166373-3246.jpg" },
{ id: "p5", name: "Berry Tart", price: "$6", variant: "Pastries", imageSrc: "http://img.b2bpic.net/free-photo/homemade-delicious-rustic-summer-berry-tartles_114579-11035.jpg" },
{ id: "p6", name: "Vanilla Cupcake", price: "$5", variant: "Cakes", imageSrc: "http://img.b2bpic.net/free-photo/yummy-birthday-muffin-blue-background_23-2148351869.jpg" }
]}
title="Our Daily Menu"
description="Explore our hand-crafted selection of fresh daily bakes."
@@ -211,30 +104,10 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
features={[
{
title: "Morning Bakes",
description: "Fresh bread every dawn.",
imageSrc: "http://img.b2bpic.net/free-photo/pieces-fresh-homemade-sourdough-bread-slicing-artisan-bread-straw-lining-top-view_166373-3259.jpg",
buttonIcon: "Sparkles",
},
{
title: "Sweet Treats",
description: "Delicate pastries daily.",
imageSrc: "http://img.b2bpic.net/free-photo/rustic-croissants-breakfast_23-2147667282.jpg",
buttonIcon: "Sparkles",
},
{
title: "Custom Cakes",
description: "Beautiful birthday cakes.",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-chocolate-cake-slices-plates_23-2148689844.jpg",
buttonIcon: "Sparkles",
},
{
title: "Cookie Jar",
description: "Soft baked favorites.",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-yummy-pancakes-with-fruits-sweet-cakes-dark-surface-cake-dessert-sweet_140725-82080.jpg",
buttonIcon: "Sparkles",
},
{ title: "Morning Bakes", description: "Fresh bread every dawn.", imageSrc: "http://img.b2bpic.net/free-photo/pieces-fresh-homemade-sourdough-bread-slicing-artisan-bread-straw-lining-top-view_166373-3259.jpg", buttonIcon: Sparkles },
{ title: "Sweet Treats", description: "Delicate pastries daily.", imageSrc: "http://img.b2bpic.net/free-photo/rustic-croissants-breakfast_23-2147667282.jpg", buttonIcon: Sparkles },
{ title: "Custom Cakes", description: "Beautiful birthday cakes.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-chocolate-cake-slices-plates_23-2148689844.jpg", buttonIcon: Sparkles },
{ title: "Cookie Jar", description: "Soft baked favorites.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-yummy-pancakes-with-fruits-sweet-cakes-dark-surface-cake-dessert-sweet_140725-82080.jpg", buttonIcon: Sparkles }
]}
title="Bakery Gallery"
description="A visual journey into our kitchen and our freshly prepared delights."
@@ -246,61 +119,11 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={true}
testimonials={[
{
id: "t1",
name: "Sarah J.",
date: "Oct 2023",
title: "Excellent!",
quote: "The best bakery in the neighborhood.",
tag: "Regular",
avatarSrc: "http://img.b2bpic.net/free-photo/curly-girl-with-beatiful-smile-keeping-cup-coffee-looking-camera_7502-9179.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/woman-blue-hat-sits-windowsill-cafe_8353-194.jpg?_wi=3",
imageAlt: "happy customer eating pastry",
},
{
id: "t2",
name: "Mark D.",
date: "Sept 2023",
title: "Amazing",
quote: "Love their sourdough bread and coffee.",
tag: "Local",
avatarSrc: "http://img.b2bpic.net/free-photo/man-baker-with-fresh-bread-baker-house_1303-32279.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/bakery-atmospheric-photo_1321-4640.jpg?_wi=3",
imageAlt: "happy customer eating pastry",
},
{
id: "t3",
name: "Emily R.",
date: "Aug 2023",
title: "Top tier",
quote: "Their croissants are always flaky and fresh.",
tag: "Fan",
avatarSrc: "http://img.b2bpic.net/free-photo/attractive-young-woman-with-opened-mouth-holds-plate-with-piece-delicious-cake-hands-brown-haired-lady-with-red-manicure_176532-9797.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-cake-glass-arrangement_23-2149030731.jpg?_wi=3",
imageAlt: "happy customer eating pastry",
},
{
id: "t4",
name: "Kevin L.",
date: "July 2023",
title: "So good!",
quote: "Great service and even better treats.",
tag: "Regular",
avatarSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-bakery_23-2150273239.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/set-croissants_23-2149395340.jpg?_wi=3",
imageAlt: "happy customer eating pastry",
},
{
id: "t5",
name: "Jessica B.",
date: "June 2023",
title: "Love it",
quote: "My favorite weekend spot for cookies.",
tag: "Fan",
avatarSrc: "http://img.b2bpic.net/free-photo/cheerful-woman-cooking-breakfast_23-2147767392.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-sweet-biscuits-light-dark-background_140725-131767.jpg?_wi=3",
imageAlt: "happy customer eating pastry",
},
{ id: "t1", name: "Sarah J.", date: "Oct 2023", title: "Excellent!", quote: "The best bakery in the neighborhood.", tag: "Regular", avatarSrc: "http://img.b2bpic.net/free-photo/curly-girl-with-beatiful-smile-keeping-cup-coffee-looking-camera_7502-9179.jpg", imageSrc: "http://img.b2bpic.net/free-photo/woman-blue-hat-sits-windowsill-cafe_8353-194.jpg", imageAlt: "happy customer eating pastry" },
{ id: "t2", name: "Mark D.", date: "Sept 2023", title: "Amazing", quote: "Love their sourdough bread and coffee.", tag: "Local", avatarSrc: "http://img.b2bpic.net/free-photo/man-baker-with-fresh-bread-baker-house_1303-32279.jpg", imageSrc: "http://img.b2bpic.net/free-photo/bakery-atmospheric-photo_1321-4640.jpg", imageAlt: "happy customer eating pastry" },
{ id: "t3", name: "Emily R.", date: "Aug 2023", title: "Top tier", quote: "Their croissants are always flaky and fresh.", tag: "Fan", avatarSrc: "http://img.b2bpic.net/free-photo/attractive-young-woman-with-opened-mouth-holds-plate-with-piece-delicious-cake-hands-brown-haired-lady-with-red-manicure_176532-9797.jpg", imageSrc: "http://img.b2bpic.net/free-photo/delicious-cake-glass-arrangement_23-2149030731.jpg", imageAlt: "happy customer eating pastry" },
{ id: "t4", name: "Kevin L.", date: "July 2023", title: "So good!", quote: "Great service and even better treats.", tag: "Regular", avatarSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-bakery_23-2150273239.jpg", imageSrc: "http://img.b2bpic.net/free-photo/set-croissants_23-2149395340.jpg", imageAlt: "happy customer eating pastry" },
{ id: "t5", name: "Jessica B.", date: "June 2023", title: "Love it", quote: "My favorite weekend spot for cookies.", tag: "Fan", avatarSrc: "http://img.b2bpic.net/free-photo/cheerful-woman-cooking-breakfast_23-2147767392.jpg", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-sweet-biscuits-light-dark-background_140725-131767.jpg", imageAlt: "happy customer eating pastry" }
]}
title="Customer Favorites"
description="Hear what our wonderful community says about us."
@@ -312,21 +135,9 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
faqs={[
{
id: "f1",
title: "Do you offer gluten-free?",
content: "Yes, we have a selection of GF options daily.",
},
{
id: "f2",
title: "Can I pre-order cakes?",
content: "Absolutely, please visit us or call 48 hours in advance.",
},
{
id: "f3",
title: "Where is the bakery located?",
content: "We are located at 123 Bakery Lane, Sweet City.",
},
{ id: "f1", title: "Do you offer gluten-free?", content: "Yes, we have a selection of GF options daily." },
{ id: "f2", title: "Can I pre-order cakes?", content: "Absolutely, please visit us or call 48 hours in advance." },
{ id: "f3", title: "Where is the bakery located?", content: "We are located at 123 Bakery Lane, Sweet City." }
]}
title="Questions Answered"
description="Have questions about our baking process or menu?"
@@ -341,27 +152,9 @@ export default function LandingPage() {
gridVariant="bento-grid"
useInvertedBackground={true}
metrics={[
{
id: "m1",
value: "1000+",
title: "Loaves Baked",
description: "Weekly production",
icon: CheckCircle,
},
{
id: "m2",
value: "500+",
title: "Happy Customers",
description: "Weekly visitors",
icon: Star,
},
{
id: "m3",
value: "24",
title: "Working Hours",
description: "Dedicated baking",
icon: Zap,
},
{ id: "m1", value: "1000+", title: "Loaves Baked", description: "Weekly production", icon: CheckCircle },
{ id: "m2", value: "500+", title: "Happy Customers", description: "Weekly visitors", icon: Star },
{ id: "m3", value: "24", title: "Working Hours", description: "Dedicated baking", icon: Zap }
]}
title="By The Numbers"
description="Our passion through numbers."
@@ -371,9 +164,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{
variant: "gradient-bars",
}}
background={{ variant: "gradient-bars" }}
tag="Get In Touch"
title="We'd Love To Hear From You"
description="Contact us for large orders or custom cakes."
@@ -383,42 +174,9 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "About",
href: "#about",
},
{
label: "Menu",
href: "#menu",
},
],
},
{
items: [
{
label: "Contact",
href: "#contact",
},
{
label: "Order",
href: "#order",
},
],
},
{
items: [
{
label: "Instagram",
href: "#",
},
{
label: "Facebook",
href: "#",
},
],
},
{ items: [{ label: "About", href: "#about" }, { label: "Menu", href: "#menu" }] },
{ items: [{ label: "Contact", href: "#contact" }, { label: "Order", href: "#order" }] },
{ items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }] }
]}
logoText="Sweet Crumbs Bakery"
/>
@@ -426,4 +184,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}