From 429acf5d2b22499a7570b12813e45d34d84e124c Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 21:41:48 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 71a58ac..6a79b6a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import TestimonialCardTwelve from '@/components/sections/testimonial/Testimonial import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FooterCard from '@/components/sections/footer/FooterCard'; -import { Award, Leaf, Star, BookOpen, Sprout, Zap, Heart, Truck, Users, Shield, MessageSquare, Check, Clock, Facebook, Instagram, Twitter, Mail } from 'lucide-react'; +import { Award, Leaf, Star, BookOpen, Sprout, Zap, Heart, Truck, Users, Shield, MessageSquare, Check, Clock, Facebook, Instagram, Twitter, Mail, ShoppingCart, Settings } from 'lucide-react'; export default function LandingPage() { return ( @@ -58,9 +58,9 @@ export default function LandingPage() { dashboard={{ title: "Fresh Deliveries This Week", logoIcon: Leaf, imageSrc: "http://img.b2bpic.net/free-photo/various-fruits-with-vegetable-wood-background_1150-4880.jpg", searchPlaceholder: "Search fresh items...", sidebarItems: [ - { icon: "ShoppingCart" }, - { icon: "Heart", active: true }, - { icon: "Settings" } + { icon: ShoppingCart }, + { icon: Heart, active: true }, + { icon: Settings } ], buttons: [ { text: "Add to Cart", href: "#" }, @@ -79,9 +79,9 @@ export default function LandingPage() { { value: 88 } ], listTitle: "Latest Orders", listItems: [ - { icon: "Check", title: "Fresh Salad Box", status: "Delivered" }, - { icon: "Truck", title: "Organic Produce Pack", status: "In Transit" }, - { icon: "Clock", title: "Premium Juice Set", status: "Processing" } + { icon: Check, title: "Fresh Salad Box", status: "Delivered" }, + { icon: Truck, title: "Organic Produce Pack", status: "In Transit" }, + { icon: Clock, title: "Premium Juice Set", status: "Processing" } ] }} /> @@ -175,16 +175,16 @@ export default function LandingPage() {