Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 665259e57c | |||
| b828f6735f | |||
| 8b069d491e | |||
| 4c627006d1 | |||
| 7b9ab9bf62 | |||
| 03a5dada47 | |||
| a8cd04f4f8 | |||
| b0df969f03 | |||
| 7748af3a03 | |||
| 1cb1907a1d |
@@ -2,7 +2,6 @@
|
||||
|
||||
import { ArrowLeftRight, Wheat, Cake, ChefHat, CircleDollarSign, Clock, Croissant, Gift, Heart, Hexagon, House, Leaf, Mail, MessageSquareText, Package, Send, Settings, Sparkles, Star, Users } from "lucide-react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import FeatureBento from '@/components/sections/feature/FeatureBento';
|
||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
@@ -24,79 +23,6 @@ export default function BakeryPage() {
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
background={{ variant: "plain" }}
|
||||
tag="Artisan Quality"
|
||||
tagIcon={Sparkles}
|
||||
title="Freshly Baked Every Morning"
|
||||
description="Handcrafted pastries, breads, and desserts made with love using only the finest organic ingredients. Your neighborhood bakery since 2010."
|
||||
buttons={[
|
||||
{ text: "View Our Menu", href: "#products" },
|
||||
{ text: "Visit Us Today", href: "#contact" }
|
||||
]}
|
||||
dashboard={{
|
||||
title: "Our Daily Selection",
|
||||
logoIcon: Croissant,
|
||||
imageSrc: "https://images.unsplash.com/photo-1519681393784-d120267933ba?w=800&q=80",
|
||||
buttons: [
|
||||
{ text: "Shop Now", href: "#products" },
|
||||
{ text: "Custom Orders", href: "#contact" }
|
||||
],
|
||||
sidebarItems: [
|
||||
{ icon: Package },
|
||||
{ icon: Heart },
|
||||
{ icon: Settings }
|
||||
],
|
||||
stats: [
|
||||
{
|
||||
title: "Baked Daily",
|
||||
values: [50, 75, 120],
|
||||
description: "Fresh items every day"
|
||||
},
|
||||
{
|
||||
title: "Happy Customers",
|
||||
values: [2000, 3500, 5000],
|
||||
description: "Loyal community members"
|
||||
},
|
||||
{
|
||||
title: "Organic Ingredients",
|
||||
values: [95, 97, 100],
|
||||
valueSuffix: "%",
|
||||
description: "Sourced locally"
|
||||
}
|
||||
],
|
||||
chartTitle: "Monthly Sales Trend",
|
||||
chartData: [
|
||||
{ value: 65 },
|
||||
{ value: 78 },
|
||||
{ value: 92 },
|
||||
{ value: 85 },
|
||||
{ value: 110 }
|
||||
],
|
||||
listTitle: "Today's Special Orders",
|
||||
listItems: [
|
||||
{
|
||||
icon: Cake,
|
||||
title: "Custom Birthday Cake",
|
||||
status: "Ready for pickup"
|
||||
},
|
||||
{
|
||||
icon: Croissant,
|
||||
title: "Almond Croissants",
|
||||
status: "Just baked"
|
||||
},
|
||||
{
|
||||
icon: Wheat,
|
||||
title: "Sourdough Loaves",
|
||||
status: "Available now"
|
||||
}
|
||||
],
|
||||
searchPlaceholder: "Search our products"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<SplitAbout
|
||||
title="About Sweet Haven Bakery"
|
||||
|
||||
@@ -114,7 +114,7 @@ const SplitAbout = ({
|
||||
description={description}
|
||||
tag={tag}
|
||||
tagIcon={tagIcon}
|
||||
buttons={buttons}
|
||||
buttons={buttons?.filter(button => button.dataWebildId !== 'webild-1770395943147-6dz9n3plz')}
|
||||
textboxLayout={textboxLayout}
|
||||
useInvertedBackground={useInvertedBackground}
|
||||
textBoxClassName={textBoxClassName}
|
||||
|
||||
Reference in New Issue
Block a user