Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
559
src/app/page.tsx
559
src/app/page.tsx
@@ -19,420 +19,173 @@ export default function LandingPage() {
|
||||
defaultButtonVariant="expand-hover"
|
||||
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">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Custom Cakes",
|
||||
id: "cakes",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "menu",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "testimonials",
|
||||
},
|
||||
{
|
||||
name: "Visit Us",
|
||||
id: "visit",
|
||||
},
|
||||
{
|
||||
name: "Order Inquiry",
|
||||
id: "contact",
|
||||
},
|
||||
]}
|
||||
brandName="Lily’s Bakery Coffee Shop"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Custom Cakes", id: "cakes" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Visit Us", id: "visit" },
|
||||
{ name: "Order Inquiry", id: "contact" }
|
||||
]}
|
||||
brandName="Lily’s Bakery Coffee Shop"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroOverlayTestimonial
|
||||
title="Dominican Cakes, Fresh Coffee & Harrisburg’s Favorite Bakery Treats"
|
||||
description="From beautiful custom birthday cakes to warm empanadas, tres leches, pastries, and coffee, Lily’s brings homemade flavor and friendly service to Harrisburg."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Diosmary Vasquez",
|
||||
handle: "Local Customer",
|
||||
testimonial: "My husband ordered my birthday cake Dominican style and they delivered. It was beautiful and very tasty.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/slice-chocolate-cake-glass-plate_114579-87378.jpg?_wi=1",
|
||||
imageAlt: "luxury bakery cake photography",
|
||||
},
|
||||
{
|
||||
name: "Ruben Valdez",
|
||||
handle: "Regular Patron",
|
||||
testimonial: "Her family’s service is exceptional. Her communication is on point and even in her busiest seasons, she came through.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/yellow-wall-with-cracks-it_23-2148255133.jpg",
|
||||
imageAlt: "luxury bakery cake photography",
|
||||
},
|
||||
{
|
||||
name: "Maria Rodriguez",
|
||||
handle: "Happy Mom",
|
||||
testimonial: "The kids loved the custom cookies. Everything tasted so fresh and authentic.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-weeding-cake-with-ornate-decorations_23-2151379519.jpg?_wi=1",
|
||||
imageAlt: "luxury bakery cake photography",
|
||||
},
|
||||
{
|
||||
name: "Elena Smith",
|
||||
handle: "First-time visitor",
|
||||
testimonial: "Stopped by for coffee and ended up buying a whole box of treats. Amazing quality!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/various-sweet-pastries-rolls-with-cookies-wooden-board_114579-23515.jpg?_wi=1",
|
||||
imageAlt: "luxury bakery cake photography",
|
||||
},
|
||||
{
|
||||
name: "Carlos Gomez",
|
||||
handle: "Foodie",
|
||||
testimonial: "The tres leches is the best I've had in Pennsylvania, hands down.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-close-view-salad-right-bottom-side-with-herbs-wheat-side-dark-grey-table_140725-136039.jpg?_wi=1",
|
||||
imageAlt: "luxury bakery cake photography",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Order a Custom Cake",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
text: "View Menu Favorites",
|
||||
href: "#menu",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/slice-chocolate-cake-glass-plate_114579-87378.jpg?_wi=2"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/beautiful-pastries-wooden-table_23-2147802637.jpg",
|
||||
alt: "Customer avatar 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/delicious-coffee-cup-indoors_23-2150708146.jpg",
|
||||
alt: "Customer avatar 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/people-hangout-together-coffee-shop_53876-31515.jpg",
|
||||
alt: "Customer avatar 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/african-american-barista-uniform-giving-cup-coffee-his-client-trendy-coffee-shop_613910-21070.jpg",
|
||||
alt: "Customer avatar 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/man-bio-food-shop-helped-by-seller_482257-81634.jpg",
|
||||
alt: "Customer avatar 5",
|
||||
},
|
||||
]}
|
||||
avatarText="Loved by 1,000+ local bakery fans"
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroOverlayTestimonial
|
||||
title="Dominican Cakes, Fresh Coffee & Harrisburg’s Favorite Bakery Treats"
|
||||
description="From beautiful custom birthday cakes to warm empanadas, tres leches, pastries, and coffee, Lily’s brings homemade flavor and friendly service to Harrisburg."
|
||||
testimonials={[
|
||||
{ name: "Diosmary Vasquez", handle: "Local Customer", testimonial: "My husband ordered my birthday cake Dominican style and they delivered. It was beautiful and very tasty.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/slice-chocolate-cake-glass-plate_114579-87378.jpg", imageAlt: "luxury bakery cake photography" },
|
||||
{ name: "Ruben Valdez", handle: "Regular Patron", testimonial: "Her family’s service is exceptional. Her communication is on point and even in her busiest seasons, she came through.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/yellow-wall-with-cracks-it_23-2148255133.jpg", imageAlt: "luxury bakery cake photography" },
|
||||
{ name: "Maria Rodriguez", handle: "Happy Mom", testimonial: "The kids loved the custom cookies. Everything tasted so fresh and authentic.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-weeding-cake-with-ornate-decorations_23-2151379519.jpg", imageAlt: "luxury bakery cake photography" },
|
||||
{ name: "Elena Smith", handle: "First-time visitor", testimonial: "Stopped by for coffee and ended up buying a whole box of treats. Amazing quality!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/various-sweet-pastries-rolls-with-cookies-wooden-board_114579-23515.jpg", imageAlt: "luxury bakery cake photography" },
|
||||
{ name: "Carlos Gomez", handle: "Foodie", testimonial: "The tres leches is the best I've had in Pennsylvania, hands down.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/top-close-view-salad-right-bottom-side-with-herbs-wheat-side-dark-grey-table_140725-136039.jpg", imageAlt: "luxury bakery cake photography" }
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "Order a Custom Cake", href: "#contact" },
|
||||
{ text: "View Menu Favorites", href: "#menu" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/slice-chocolate-cake-glass-plate_114579-87378.jpg"
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/beautiful-pastries-wooden-table_23-2147802637.jpg", alt: "Customer avatar 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/delicious-coffee-cup-indoors_23-2150708146.jpg", alt: "Customer avatar 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/people-hangout-together-coffee-shop_53876-31515.jpg", alt: "Customer avatar 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/african-american-barista-uniform-giving-cup-coffee-his-client-trendy-coffee-shop_613910-21070.jpg", alt: "Customer avatar 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/man-bio-food-shop-helped-by-seller_482257-81634.jpg", alt: "Customer avatar 5" }
|
||||
]}
|
||||
avatarText="Loved by 1,000+ local bakery fans"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="review-strip" data-section="review-strip">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"Delicious Dominican Cakes",
|
||||
"Best Empanadas in Harrisburg",
|
||||
"Friendly Service",
|
||||
"Clean & Welcoming Shop",
|
||||
"Tres Leches Expert",
|
||||
]}
|
||||
title="A Harrisburg Favorite"
|
||||
description="Loved for authentic flavor, beautiful presentation, and a clean, welcoming shop atmosphere."
|
||||
/>
|
||||
</div>
|
||||
<div id="review-strip" data-section="review-strip">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={["Delicious Dominican Cakes", "Best Empanadas in Harrisburg", "Friendly Service", "Clean & Welcoming Shop", "Tres Leches Expert"]}
|
||||
title="A Harrisburg Favorite"
|
||||
description="Loved for authentic flavor, beautiful presentation, and a clean, welcoming shop atmosphere."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="cakes" data-section="cakes">
|
||||
<MediaAbout
|
||||
useInvertedBackground={false}
|
||||
title="Custom Cakes Made for Life’s Sweetest Moments"
|
||||
description="Whether it’s a birthday, wedding, or anniversary, Lily’s creates custom cakes with the perfect flavor, color, and detail you deserve. Not too sweet, not too dry—just unforgettable."
|
||||
buttons={[
|
||||
{
|
||||
text: "Start a Cake Inquiry",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/view-delicious-weeding-cake-with-ornate-decorations_23-2151379519.jpg?_wi=2"
|
||||
/>
|
||||
</div>
|
||||
<div id="cakes" data-section="cakes">
|
||||
<MediaAbout
|
||||
useInvertedBackground={false}
|
||||
title="Custom Cakes Made for Life’s Sweetest Moments"
|
||||
description="Whether it’s a birthday, wedding, or anniversary, Lily’s creates custom cakes with the perfect flavor, color, and detail you deserve. Not too sweet, not too dry—just unforgettable."
|
||||
buttons={[{ text: "Start a Cake Inquiry", href: "#contact" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/view-delicious-weeding-cake-with-ornate-decorations_23-2151379519.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="split-description"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Dominican Cake",
|
||||
price: "Custom Pricing",
|
||||
variant: "Authentic Recipe",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/various-sweet-pastries-rolls-with-cookies-wooden-board_114579-23515.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Empanadas",
|
||||
price: "Fresh Daily",
|
||||
variant: "Savory Bites",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-close-view-salad-right-bottom-side-with-herbs-wheat-side-dark-grey-table_140725-136039.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Tres Leches",
|
||||
price: "Classic",
|
||||
variant: "Signature Dessert",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/square-slice-chocolate-cheesecake-stone-platter_114579-16537.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Artisan Cookies",
|
||||
price: "By the Dozen",
|
||||
variant: "Sweet Treats",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-cafe-wooden-table-with-jar-decorative-flowers-against-blurred-background_181624-59999.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Alcapurria",
|
||||
price: "Fresh Daily",
|
||||
variant: "Traditional",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-roll-cookies-with-white-raisins-sweet-stuffings-wooden-board_114579-22273.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Samosas",
|
||||
price: "Daily Special",
|
||||
variant: "Savory",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-sweets-plate-two-appetizing-cupcakes-sweets-saucer-cup-tea-with-lemon-cinnamon-sticks-bowls-colorful-sweets-table_140725-111750.jpg",
|
||||
},
|
||||
]}
|
||||
title="Fresh Bakery Favorites, Savory Bites & Coffee"
|
||||
description="Stop in for something sweet, something savory, or a coffee break that feels homemade. Every recipe is crafted with love and tradition."
|
||||
/>
|
||||
</div>
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="split-description"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "1", name: "Dominican Cake", price: "Custom Pricing", variant: "Authentic Recipe", imageSrc: "http://img.b2bpic.net/free-photo/various-sweet-pastries-rolls-with-cookies-wooden-board_114579-23515.jpg" },
|
||||
{ id: "2", name: "Empanadas", price: "Fresh Daily", variant: "Savory Bites", imageSrc: "http://img.b2bpic.net/free-photo/top-close-view-salad-right-bottom-side-with-herbs-wheat-side-dark-grey-table_140725-136039.jpg" },
|
||||
{ id: "3", name: "Tres Leches", price: "Classic", variant: "Signature Dessert", imageSrc: "http://img.b2bpic.net/free-photo/square-slice-chocolate-cheesecake-stone-platter_114579-16537.jpg" },
|
||||
{ id: "4", name: "Artisan Cookies", price: "By the Dozen", variant: "Sweet Treats", imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-cafe-wooden-table-with-jar-decorative-flowers-against-blurred-background_181624-59999.jpg" },
|
||||
{ id: "5", name: "Alcapurria", price: "Fresh Daily", variant: "Traditional", imageSrc: "http://img.b2bpic.net/free-photo/fried-roll-cookies-with-white-raisins-sweet-stuffings-wooden-board_114579-22273.jpg" },
|
||||
{ id: "6", name: "Samosas", price: "Daily Special", variant: "Savory", imageSrc: "http://img.b2bpic.net/free-photo/top-view-sweets-plate-two-appetizing-cupcakes-sweets-saucer-cup-tea-with-lemon-cinnamon-sticks-bowls-colorful-sweets-table_140725-111750.jpg" }
|
||||
]}
|
||||
title="Fresh Bakery Favorites, Savory Bites & Coffee"
|
||||
description="Stop in for something sweet, something savory, or a coffee break that feels homemade. Every recipe is crafted with love and tradition."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Homemade Flavor",
|
||||
description: "Authentic Dominican taste balanced to perfection.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/red-velvet-cake-stuffed-with-white-butter-cream_114579-2315.jpg",
|
||||
},
|
||||
{
|
||||
title: "Detail-Oriented Design",
|
||||
description: "Patience and care for your custom cake vision.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/azerbaijan-national-pastry-shakarbura-white-plate-grey-concrete-top-view-spring-new-year-celebration-novruz-holiday_114579-7399.jpg",
|
||||
},
|
||||
{
|
||||
title: "Exceptional Service",
|
||||
description: "Kind, respectful, and always welcoming.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/square-slice-chocolate-cheesecake-with-cookies_114579-16570.jpg",
|
||||
},
|
||||
{
|
||||
title: "Clean Atmosphere",
|
||||
description: "Comfortable and inviting space.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-sitting-bar_23-2147680672.jpg",
|
||||
},
|
||||
{
|
||||
title: "Savory Favorites",
|
||||
description: "The best empanadas in the city.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wooden-board-full-sweet-cookies-cup-herbal-tea_114579-46801.jpg",
|
||||
},
|
||||
{
|
||||
title: "Reliability",
|
||||
description: "Delivering quality even during busy seasons.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-chicken-breast-roll-with-sauce-tomatoes-bread_141793-3963.jpg",
|
||||
},
|
||||
]}
|
||||
title="Why Harrisburg Keeps Coming Back"
|
||||
description="It’s not just about the food—it’s about the experience we provide every single day."
|
||||
/>
|
||||
</div>
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ title: "Homemade Flavor", description: "Authentic Dominican taste balanced to perfection.", imageSrc: "http://img.b2bpic.net/free-photo/red-velvet-cake-stuffed-with-white-butter-cream_114579-2315.jpg" },
|
||||
{ title: "Detail-Oriented Design", description: "Patience and care for your custom cake vision.", imageSrc: "http://img.b2bpic.net/free-photo/azerbaijan-national-pastry-shakarbura-white-plate-grey-concrete-top-view-spring-new-year-celebration-novruz-holiday_114579-7399.jpg" },
|
||||
{ title: "Exceptional Service", description: "Kind, respectful, and always welcoming.", imageSrc: "http://img.b2bpic.net/free-photo/square-slice-chocolate-cheesecake-with-cookies_114579-16570.jpg" },
|
||||
{ title: "Clean Atmosphere", description: "Comfortable and inviting space.", imageSrc: "http://img.b2bpic.net/free-photo/woman-sitting-bar_23-2147680672.jpg" },
|
||||
{ title: "Savory Favorites", description: "The best empanadas in the city.", imageSrc: "http://img.b2bpic.net/free-photo/wooden-board-full-sweet-cookies-cup-herbal-tea_114579-46801.jpg" },
|
||||
{ title: "Reliability", description: "Delivering quality even during busy seasons.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-chicken-breast-roll-with-sauce-tomatoes-bread_141793-3963.jpg" }
|
||||
]}
|
||||
title="Why Harrisburg Keeps Coming Back"
|
||||
description="It’s not just about the food—it’s about the experience we provide every single day."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSixteen
|
||||
animationType="slide-up"
|
||||
textboxLayout="split-description"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Juan Cruz",
|
||||
role: "Local",
|
||||
company: "Harrisburg",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-cinnamon-rolls-table_23-2148604544.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Diosmary Vasquez",
|
||||
role: "Patron",
|
||||
company: "Harrisburg",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coffee-with-fresh-blueberries_661915-113.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Mayelin Ovalles",
|
||||
role: "Regular",
|
||||
company: "Harrisburg",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-cupcakes-plate-paper-roses_23-2148815922.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Ruben Valdez",
|
||||
role: "Patron",
|
||||
company: "Harrisburg",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-sweet-biscuits-wooden-board-with-blueberries_114579-88974.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Richie Colon",
|
||||
role: "Patron",
|
||||
company: "Harrisburg",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-cake-decorated-with-orange-chocolate-with-other-cookies-dark-table_140725-86313.jpg",
|
||||
},
|
||||
]}
|
||||
kpiItems={[
|
||||
{
|
||||
value: "100+",
|
||||
label: "Custom Cakes Yearly",
|
||||
},
|
||||
{
|
||||
value: "5/5",
|
||||
label: "Customer Satisfaction",
|
||||
},
|
||||
{
|
||||
value: "10+ Yrs",
|
||||
label: "Community Favorite",
|
||||
},
|
||||
]}
|
||||
title="What Our Customers Say"
|
||||
description="Authentic reviews from our community in Harrisburg."
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSixteen
|
||||
animationType="slide-up"
|
||||
textboxLayout="split-description"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "1", name: "Juan Cruz", role: "Local", company: "Harrisburg", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-cinnamon-rolls-table_23-2148604544.jpg" },
|
||||
{ id: "2", name: "Diosmary Vasquez", role: "Patron", company: "Harrisburg", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/coffee-with-fresh-blueberries_661915-113.jpg" },
|
||||
{ id: "3", name: "Mayelin Ovalles", role: "Regular", company: "Harrisburg", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/high-angle-cupcakes-plate-paper-roses_23-2148815922.jpg" },
|
||||
{ id: "4", name: "Ruben Valdez", role: "Patron", company: "Harrisburg", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/delicious-sweet-biscuits-wooden-board-with-blueberries_114579-88974.jpg" },
|
||||
{ id: "5", name: "Richie Colon", role: "Patron", company: "Harrisburg", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/delicious-cake-decorated-with-orange-chocolate-with-other-cookies-dark-table_140725-86313.jpg" }
|
||||
]}
|
||||
kpiItems={[
|
||||
{ value: "100+", label: "Custom Cakes Yearly" },
|
||||
{ value: "5/5", label: "Customer Satisfaction" },
|
||||
{ value: "10+ Yrs", label: "Community Favorite" }
|
||||
]}
|
||||
title="What Our Customers Say"
|
||||
description="Authentic reviews from our community in Harrisburg."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="visit" data-section="visit">
|
||||
<MetricCardEleven
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "Harrisburg, PA",
|
||||
title: "Location",
|
||||
description: "Visit our shop today.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/rollcake-with-eclairs-pie-slices_114579-20806.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "555-0123",
|
||||
title: "Call Us",
|
||||
description: "Direct line for orders.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-baked-buns-hot-tasty-fresh-inside-bread-bin-along-with-salt-pepper-pink_140725-24299.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "7 AM - 6 PM",
|
||||
title: "Hours",
|
||||
description: "Fresh daily pastries.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cupcake-still-life_23-2148097843.jpg",
|
||||
},
|
||||
]}
|
||||
title="Visit Lily’s Bakery"
|
||||
description="Come experience our treats in Harrisburg, PA. We look forward to serving you."
|
||||
/>
|
||||
</div>
|
||||
<div id="visit" data-section="visit">
|
||||
<MetricCardEleven
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{ id: "1", value: "Harrisburg, PA", title: "Location", description: "Visit our shop today.", imageSrc: "http://img.b2bpic.net/free-photo/rollcake-with-eclairs-pie-slices_114579-20806.jpg" },
|
||||
{ id: "2", value: "555-0123", title: "Call Us", description: "Direct line for orders.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-baked-buns-hot-tasty-fresh-inside-bread-bin-along-with-salt-pepper-pink_140725-24299.jpg" },
|
||||
{ id: "3", value: "7 AM - 6 PM", title: "Hours", description: "Fresh daily pastries.", imageSrc: "http://img.b2bpic.net/free-photo/cupcake-still-life_23-2148097843.jpg" }
|
||||
]}
|
||||
title="Visit Lily’s Bakery"
|
||||
description="Come experience our treats in Harrisburg, PA. We look forward to serving you."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
text="Planning a Birthday, Wedding, Shower, or Celebration? Tell us what you’re celebrating and your vision—we’ll make it unforgettable."
|
||||
buttons={[
|
||||
{
|
||||
text: "Start Your Cake Inquiry",
|
||||
href: "#contact-form",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
text="Planning a Birthday, Wedding, Shower, or Celebration? Tell us what you’re celebrating and your vision—we’ll make it unforgettable."
|
||||
buttons={[{ text: "Start Your Cake Inquiry", href: "#contact-form" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/woman-blue-hat-sits-windowsill-cafe_8353-194.jpg"
|
||||
logoText="Lily’s Bakery"
|
||||
columns={[
|
||||
{
|
||||
title: "Bakery",
|
||||
items: [
|
||||
{
|
||||
label: "Custom Cakes",
|
||||
href: "#cakes",
|
||||
},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
{
|
||||
label: "Visit Us",
|
||||
href: "#visit",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "Email Inquiry",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
label: "Call Us",
|
||||
href: "tel:5550123",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Follow",
|
||||
items: [
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Facebook",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2025 Lily’s Bakery Coffee Shop | Harrisburg, PA"
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/woman-blue-hat-sits-windowsill-cafe_8353-194.jpg"
|
||||
logoText="Lily’s Bakery"
|
||||
columns={[
|
||||
{ title: "Bakery", items: [{ label: "Custom Cakes", href: "#cakes" }, { label: "Menu", href: "#menu" }, { label: "Visit Us", href: "#visit" }] },
|
||||
{ title: "Contact", items: [{ label: "Email Inquiry", href: "#contact" }, { label: "Call Us", href: "tel:5550123" }] },
|
||||
{ title: "Follow", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }] }
|
||||
]}
|
||||
copyrightText="© 2025 Lily’s Bakery Coffee Shop | Harrisburg, PA"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user