Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #3.
This commit is contained in:
2026-03-13 10:46:46 +00:00

View File

@@ -54,32 +54,32 @@ export default function LandingPage() {
background={{ variant: "plain" }} background={{ variant: "plain" }}
dashboard={{ dashboard={{
title: "Dashboard", stats: [ title: "Dashboard", stats: [
{ label: "Orders Today", value: "1,234", icon: TrendingUpIcon }, { title: "Orders Today", value: "1,234", icon: TrendingUpIcon },
{ label: "Active Members", value: "15K+", icon: Users }, { title: "Active Members", value: "15K+", icon: Users },
{ label: "Awards Won", value: "12+", icon: Award } { title: "Awards Won", value: "12+", icon: Award }
], ],
logoIcon: Coffee, logoIcon: Coffee,
sidebarItems: [ sidebarItems: [
{ label: "Dashboard", icon: BarChart3 }, { title: "Dashboard", icon: BarChart3 },
{ label: "Orders", icon: Coffee }, { title: "Orders", icon: Coffee },
{ label: "Analytics", icon: TrendingUpIcon } { title: "Analytics", icon: TrendingUpIcon }
], ],
buttons: [ buttons: [
{ text: "View Orders", href: "#products" } { text: "View Orders", href: "#products" }
], ],
listItems: [ listItems: [
{ title: "Premium Espresso", value: "$4.50" }, { title: "Premium Espresso", label: "$4.50" },
{ title: "Velvety Cappuccino", value: "$5.50" }, { title: "Velvety Cappuccino", label: "$5.50" },
{ title: "Cold Brew", value: "$5.00" } { title: "Cold Brew", label: "$5.00" }
], ],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=673ag3", imageAlt: "Brew Haven Dashboard", searchPlaceholder: "Search coffee...", chartTitle: "Weekly Sales", chartData: [ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=673ag3", imageAlt: "Brew Haven Dashboard", searchPlaceholder: "Search coffee...", chartTitle: "Weekly Sales", chartData: [
{ name: "Mon", value: 100 }, { label: "Mon", value: 100 },
{ name: "Tue", value: 120 }, { label: "Tue", value: 120 },
{ name: "Wed", value: 110 }, { label: "Wed", value: 110 },
{ name: "Thu", value: 140 }, { label: "Thu", value: 140 },
{ name: "Fri", value: 160 }, { label: "Fri", value: 160 },
{ name: "Sat", value: 180 }, { label: "Sat", value: 180 },
{ name: "Sun", value: 150 } { label: "Sun", value: 150 }
], ],
listTitle: "Today's Specials" listTitle: "Today's Specials"
}} }}