From 9c1d4784f8b8f012112e7cb63c599f8f037d7df6 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 11:37:10 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index b2c5145..e783d5f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -93,13 +93,13 @@ export default function LandingPage() { ], stats: [ { - title: "Processing Speed", values: ["2.5M", "5.8M", "8.2M"], + title: "Processing Speed", values: [2.5, 5.8, 8.2], valueSuffix: "ops/sec", description: "Real-time data processing capacity"}, { - title: "Accuracy Rate", values: ["94.2%", "96.8%", "98.5%"], + title: "Accuracy Rate", values: [94.2, 96.8, 98.5], description: "AI prediction accuracy metrics"}, { - title: "Active Users", values: ["12450", "28900", "45200"], + title: "Active Users", values: [12450, 28900, 45200], description: "Global platform users"}, ], chartTitle: "Performance Metrics", chartData: [ -- 2.49.1