Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 84fff92086 | |||
| b38807f28c |
@@ -2,8 +2,7 @@
|
||||
|
||||
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 NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard';
|
||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import FeatureBento from '@/components/sections/feature/FeatureBento';
|
||||
@@ -26,22 +25,8 @@ export default function BakeryPage() {
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
brandName="Sweet Haven Bakery"
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Menu", id: "features" }
|
||||
]}
|
||||
button={{ text: "Order Now", href: "contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardDashboard
|
||||
<HeroBillboard
|
||||
background={{ variant: "plain" }}
|
||||
tag="Artisan Quality"
|
||||
tagIcon={Sparkles}
|
||||
@@ -52,8 +37,10 @@ export default function BakeryPage() {
|
||||
{ text: "Visit Us Today", href: "#contact" }
|
||||
]}
|
||||
dashboard={{
|
||||
title: "Our Daily Selection", logoIcon: Croissant,
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/fresh-bread-wooden-spoon-old-wooden-background_169016-3149.jpg", buttons: [
|
||||
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" }
|
||||
],
|
||||
@@ -64,37 +51,46 @@ export default function BakeryPage() {
|
||||
],
|
||||
stats: [
|
||||
{
|
||||
title: "Baked Daily", values: [50, 75, 120],
|
||||
title: "Baked Daily",
|
||||
values: [50, 75, 120],
|
||||
description: "Fresh items every day"
|
||||
},
|
||||
{
|
||||
title: "Happy Customers", values: [2000, 3500, 5000],
|
||||
title: "Happy Customers",
|
||||
values: [2000, 3500, 5000],
|
||||
description: "Loyal community members"
|
||||
},
|
||||
{
|
||||
title: "Organic Ingredients", values: [95, 97, 100],
|
||||
valueSuffix: "%", description: "Sourced locally"
|
||||
title: "Organic Ingredients",
|
||||
values: [95, 97, 100],
|
||||
valueSuffix: "%",
|
||||
description: "Sourced locally"
|
||||
}
|
||||
],
|
||||
chartTitle: "Monthly Sales Trend", chartData: [
|
||||
chartTitle: "Monthly Sales Trend",
|
||||
chartData: [
|
||||
{ value: 65 },
|
||||
{ value: 78 },
|
||||
{ value: 92 },
|
||||
{ value: 85 },
|
||||
{ value: 110 }
|
||||
],
|
||||
listTitle: "Today's Special Orders", listItems: [
|
||||
listTitle: "Today's Special Orders",
|
||||
listItems: [
|
||||
{
|
||||
icon: Cake,
|
||||
title: "Custom Birthday Cake", status: "Ready for pickup"
|
||||
title: "Custom Birthday Cake",
|
||||
status: "Ready for pickup"
|
||||
},
|
||||
{
|
||||
icon: Croissant,
|
||||
title: "Almond Croissants", status: "Just baked"
|
||||
title: "Almond Croissants",
|
||||
status: "Just baked"
|
||||
},
|
||||
{
|
||||
icon: Wheat,
|
||||
title: "Sourdough Loaves", status: "Available now"
|
||||
title: "Sourdough Loaves",
|
||||
status: "Available now"
|
||||
}
|
||||
],
|
||||
searchPlaceholder: "Search our products"
|
||||
|
||||
Reference in New Issue
Block a user