From 05da47241c089d55c4beb7c463443c12862eaaa5 Mon Sep 17 00:00:00 2001 From: development Date: Fri, 13 Mar 2026 10:48:29 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index b577238..8950a9d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -60,26 +60,26 @@ export default function LandingPage() { ], logoIcon: Coffee, sidebarItems: [ - { name: "Dashboard", icon: BarChart3 }, - { name: "Orders", icon: Coffee }, - { name: "Analytics", icon: TrendingUpIcon } + { icon: BarChart3 }, + { icon: Coffee }, + { icon: TrendingUpIcon } ], buttons: [ { text: "View Orders", href: "#products" } ], listItems: [ - { title: "Premium Espresso", text: "$4.50" }, - { title: "Velvety Cappuccino", text: "$5.50" }, - { title: "Cold Brew", text: "$5.00" } + { title: "Premium Espresso", values: "$4.50" }, + { title: "Velvety Cappuccino", values: "$5.50" }, + { title: "Cold Brew", values: "$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: [ - { name: "Mon", value: 100 }, - { name: "Tue", value: 120 }, - { name: "Wed", value: 110 }, - { name: "Thu", value: 140 }, - { name: "Fri", value: 160 }, - { name: "Sat", value: 180 }, - { name: "Sun", value: 150 } + { label: "Mon", value: 100 }, + { label: "Tue", value: 120 }, + { label: "Wed", value: 110 }, + { label: "Thu", value: 140 }, + { label: "Fri", value: 160 }, + { label: "Sat", value: 180 }, + { label: "Sun", value: 150 } ], listTitle: "Today's Specials" }}