diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d73e3b7..b76cc3b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1416,4 +1416,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 58b6f39..0fe40bb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import MediaAbout from "@/components/sections/about/MediaAbout"; import MetricCardTen from "@/components/sections/metrics/MetricCardTen"; import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import { Zap, ShoppingCart, DollarSign, TrendingUp, MessageCircle, Mail } from "lucide-react"; +import { Zap, ShoppingCart, DollarSign, TrendingUp, MessageCircle, Mail, Coffee, Clock, Shield } from "lucide-react"; const navItems = [ { name: "Dashboard", id: "dashboard" }, @@ -101,6 +101,12 @@ export default function HomePage() { buttonAnimation="slide-up" ariaLabel="Hero section for café POS system" className="py-24 md:py-32" + marqueeItems={[ + { type: "text-icon", text: "500+ Cafés", icon: Coffee }, + { type: "text-icon", text: "99.99% Uptime", icon: Shield }, + { type: "text-icon", text: "24/7 Support", icon: Clock }, + ]} + showMarqueeCard={true} /> @@ -269,4 +275,4 @@ export default function HomePage() { ); -} \ No newline at end of file +}