diff --git a/src/app/page.tsx b/src/app/page.tsx index 85cbc9f..53dbbdb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import SplitAbout from '@/components/sections/about/SplitAbout'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; -import { AlertCircle, Bell, Box, Clock, FileText, ShieldCheck, TrendingDown } from "lucide-react"; +import { AlertCircle, Bell, Box, Clock, FileText, ShieldCheck, TrendingDown, ChefHat, BarChart3 } from "lucide-react"; export default function LandingPage() { return ( @@ -29,22 +29,10 @@ export default function LandingPage() {
@@ -128,79 +82,31 @@ export default function LandingPage() { useInvertedBackground={false} features={[ { - title: "Smart Inventory", - description: "Automatic stock deduction on every order with low stock alerts.", - media: { - imageSrc: "http://img.b2bpic.net/free-photo/variety-people-multitasking-3d-cartoon-scene_23-2151294525.jpg", - imageAlt: "Inventory tracking", - }, + title: "Smart Inventory", description: "Automatic stock deduction on every order with low stock alerts.", media: { imageSrc: "http://img.b2bpic.net/free-photo/variety-people-multitasking-3d-cartoon-scene_23-2151294525.jpg", imageAlt: "Inventory tracking" }, items: [ - { - icon: Box, - text: "Stock Tracking", - }, - { - icon: AlertCircle, - text: "Smart Alerts", - }, - { - icon: TrendingDown, - text: "Usage Analytics", - }, + { icon: Box, text: "Stock Tracking" }, + { icon: AlertCircle, text: "Smart Alerts" }, + { icon: TrendingDown, text: "Usage Analytics" }, ], reverse: false, - imageSrc: "http://img.b2bpic.net/free-photo/financial-program-user-interface-pc-screen-home-office-desk_482257-118861.jpg?_wi=7", - imageAlt: "dashboard interface dark mode software", }, { - title: "Real-time Kitchen Sync", - description: "Live order updates for kitchen staff with sound notifications.", - media: { - imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-tablet-template-with-mexican-food_23-2148140297.jpg?_wi=1", - imageAlt: "Kitchen sync", - }, + title: "Real-time Kitchen Sync", description: "Live order updates for kitchen staff with sound notifications.", media: { imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-tablet-template-with-mexican-food_23-2148140297.jpg", imageAlt: "Kitchen sync" }, items: [ - { - icon: ChefHat, - text: "Order Processing", - }, - { - icon: Bell, - text: "Sound Alerts", - }, - { - icon: Clock, - text: "Status Tracking", - }, + { icon: ChefHat, text: "Order Processing" }, + { icon: Bell, text: "Sound Alerts" }, + { icon: Clock, text: "Status Tracking" }, ], reverse: true, - imageSrc: "http://img.b2bpic.net/free-photo/sterile-hospital-lab-with-metal-supply-cart-wheels-clinical-space_482257-124175.jpg?_wi=2", - imageAlt: "modern professional commercial kitchen", }, { - title: "Revenue Analytics", - description: "Comprehensive daily, weekly, and monthly reports exportable in CSV/PDF.", - media: { - imageSrc: "http://img.b2bpic.net/free-photo/business-growth-analysis_23-2152011785.jpg", - imageAlt: "Analytics", - }, + title: "Revenue Analytics", description: "Comprehensive daily, weekly, and monthly reports exportable in CSV/PDF.", media: { imageSrc: "http://img.b2bpic.net/free-photo/business-growth-analysis_23-2152011785.jpg", imageAlt: "Analytics" }, items: [ - { - icon: BarChart3, - text: "Live Trends", - }, - { - icon: FileText, - text: "Export Reports", - }, - { - icon: ShieldCheck, - text: "Tax Tracking", - }, + { icon: BarChart3, text: "Live Trends" }, + { icon: FileText, text: "Export Reports" }, + { icon: ShieldCheck, text: "Tax Tracking" }, ], reverse: false, - imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-tablet-template-with-mexican-food_23-2148140297.jpg?_wi=2", - imageAlt: "digital menu tablet interface", }, ]} title="Core Modules Built for Scale" @@ -214,33 +120,9 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={true} metrics={[ - { - id: "m1", - value: "99.9%", - title: "System Uptime", - items: [ - "Cloud-based infrastructure", - "Low latency data", - ], - }, - { - id: "m2", - value: "15min", - title: "Avg. Order Turnaround", - items: [ - "Automated kitchen routing", - "Waitstaff optimization", - ], - }, - { - id: "m3", - value: "24/7", - title: "Data Accuracy", - items: [ - "Real-time database sync", - "Role-based controls", - ], - }, + { id: "m1", value: "99.9%", title: "System Uptime", items: ["Cloud-based infrastructure", "Low latency data"] }, + { id: "m2", value: "15min", title: "Avg. Order Turnaround", items: ["Automated kitchen routing", "Waitstaff optimization"] }, + { id: "m3", value: "24/7", title: "Data Accuracy", items: ["Real-time database sync", "Role-based controls"] }, ]} title="System Performance Metrics" description="Track the performance and health of your restaurant operations with real-time data." @@ -250,48 +132,24 @@ export default function LandingPage() {