diff --git a/src/app/page.tsx b/src/app/page.tsx index 61b718f..4efb888 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -68,15 +68,15 @@ export default function LandingPage() { ], stats: [ { - title: "Processing Speed", values: ["2.4M", "3.8M", "5.2M"], + title: "Processing Speed", values: [2.4, 3.8, 5.2], valueSuffix: "req/s", description: "Real-time requests per second" }, { - title: "Accuracy Rate", values: ["94.2", "96.8", "98.5"], + title: "Accuracy Rate", values: [94.2, 96.8, 98.5], valueSuffix: "%", description: "Model prediction accuracy" }, { - title: "Active Models", values: ["42", "78", "156"], + title: "Active Models", values: [42, 78, 156], description: "Deployed AI models" } ],