diff --git a/src/app/page.tsx b/src/app/page.tsx index f7ee234..c87fdc0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -66,14 +66,17 @@ export default function LandingPage() { ], stats: [ { - title: "Grapes", values: ["850", "920", "1050"], - description: "Tons exported annually"}, + title: "Grapes", values: [850, 920, 1050], + description: "Tons exported annually" + }, { - title: "Pomegranates", values: ["340", "420", "550"], - description: "Tons exported annually"}, + title: "Pomegranates", values: [340, 420, 550], + description: "Tons exported annually" + }, { - title: "Countries", values: ["15", "22", "28"], - description: "Served globally"}, + title: "Countries", values: [15, 22, 28], + description: "Served globally" + }, ], chartTitle: "Export Volume Trend", chartData: [ { value: 65 }, @@ -85,13 +88,16 @@ export default function LandingPage() { listTitle: "Recent Shipments", listItems: [ { icon: Package, - title: "2,500 crates Grapes", status: "In Transit"}, + title: "2,500 crates Grapes", status: "In Transit" + }, { icon: CheckCircle, - title: "1,200 crates Pomegranates", status: "Delivered"}, + title: "1,200 crates Pomegranates", status: "Delivered" + }, { icon: Truck, - title: "Premium Mixed Lot", status: "Processing"}, + title: "Premium Mixed Lot", status: "Processing" + }, ], }} ariaLabel="Hero section showcasing premium fruit exports" @@ -102,7 +108,8 @@ export default function LandingPage() {