diff --git a/src/app/page.tsx b/src/app/page.tsx index b3bf52b..f777726 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -21,6 +21,10 @@ import { DollarSign, Star, Sparkles, + Home, + ShoppingBag, + BarChart3, + CheckCircle, } from "lucide-react"; export default function HomePage() { @@ -104,9 +108,9 @@ export default function HomePage() { { text: "View Analytics", href: "#" }, ], sidebarItems: [ - { icon: "Home", active: true }, - { icon: "ShoppingBag", active: false }, - { icon: "BarChart3", active: false }, + { icon: Home, active: true }, + { icon: ShoppingBag, active: false }, + { icon: BarChart3, active: false }, ], stats: [ { @@ -127,9 +131,9 @@ export default function HomePage() { { value: 70 }, ], listTitle: "Recent Transactions", listItems: [ - { icon: "ShoppingCart", title: "Order #1234", status: "Delivered" }, - { icon: "Package", title: "Order #1235", status: "Shipped" }, - { icon: "CheckCircle", title: "Order #1236", status: "Confirmed" }, + { icon: ShoppingCart, title: "Order #1234", status: "Delivered" }, + { icon: Package, title: "Order #1235", status: "Shipped" }, + { icon: CheckCircle, title: "Order #1236", status: "Confirmed" }, ], }} />