From b1b56689ccd134a9abb0437a0d6682a4d2e5bd79 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 16:47:53 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c60806a..9a4e21d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -92,15 +92,15 @@ export default function LandingPage() { ], stats: [ { - title: "Processing Speed", values: ["2.4x", "3.1x", "4.2x"], + title: "Processing Speed", values: [2.4, 3.1, 4.2], valuePrefix: "", description: "Faster than competitors" }, { - title: "Accuracy Rate", values: ["94.2%", "96.8%", "98.5%"], + title: "Accuracy Rate", values: [94.2, 96.8, 98.5], valuePrefix: "", description: "AI prediction accuracy" }, { - title: "Active Users", values: ["12400", "18650", "24890"], + title: "Active Users", values: [12400, 18650, 24890], description: "Growing community" } ], @@ -304,6 +304,7 @@ export default function LandingPage() { animationType="slide-up" useInvertedBackground={false} faqsAnimation="slide-up" + animationType="smooth" faqs={[ { id: "1", title: "How does AIFlow's automation work?", content: "AIFlow uses machine learning algorithms to analyze your workflows and identify automation opportunities. Our platform learns from your patterns and continuously optimizes performance." -- 2.49.1