From 3a92de6efa1bb8837f6333fe71ff70d5c7fa4c18 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 20:29:47 +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 bb36f13..4eac93d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -100,13 +100,13 @@ export default function AIForgePage() { ], stats: [ { - title: "Processing Power", values: ["2.4M", "3.8M", "5.2M"], + title: "Processing Power", values: [2.4, 3.8, 5.2], description: "Requests per second"}, { - title: "Accuracy Rate", values: ["94.2%", "96.7%", "98.5%"], + title: "Accuracy Rate", values: [94.2, 96.7, 98.5], valueSuffix: "%", description: "Model precision"}, { - title: "API Calls", values: ["142M", "287M", "524M"], + title: "API Calls", values: [142, 287, 524], description: "Monthly volume"}, ], chartTitle: "Model Performance Trend", chartData: [ -- 2.49.1