diff --git a/src/app/page.tsx b/src/app/page.tsx index 35304c3..0f0e67a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,7 +11,7 @@ import PricingCardThree from '@/components/sections/pricing/PricingCardThree'; import FaqDouble from '@/components/sections/faq/FaqDouble'; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { Sparkles, Zap, Link2, Trophy, Star, DollarSign, HelpCircle, Rocket, Brain, Home, BarChart3, Settings, Zap as ZapIcon, CheckCircle, Activity, Database, Cloud, Lock, ZapIcon as ZapIcon2, Play, House, MessageSquareText } from 'lucide-react'; +import { Sparkles, Zap, Link2, Trophy, Star, DollarSign, HelpCircle, Rocket, Brain, Home, BarChart3, Settings, CheckCircle, Activity, Database, Cloud, Lock, Play, House, MessageSquareText } from 'lucide-react'; const LandingPage = () => { return ( @@ -68,15 +68,15 @@ const LandingPage = () => { ], stats: [ { - title: "Processing Speed", values: ["2.4M", "3.8M", "5.2M"], + title: "Processing Speed", values: [2.4, 3.8, 5.2], valuePrefix: "", valueSuffix: " ops/s", description: "Real-time data processing." }, { - title: "Accuracy Rate", values: ["94.2", "96.8", "98.5"], + title: "Accuracy Rate", values: [94.2, 96.8, 98.5], valuePrefix: "", valueSuffix: "%", description: "Model precision benchmark." }, { - title: "Active Users", values: ["12500", "18750", "24300"], + title: "Active Users", values: [12500, 18750, 24300], valuePrefix: "", valueSuffix: "", description: "Platform engagement." } ], @@ -88,7 +88,7 @@ const LandingPage = () => { { value: 95 } ], listTitle: "Recent Operations", listItems: [ - { icon: ZapIcon, title: "Model Training Completed", status: "Success" }, + { icon: Zap, title: "Model Training Completed", status: "Success" }, { icon: CheckCircle, title: "Predictions Generated", status: "Completed" }, { icon: Activity, title: "System Health Check", status: "Optimal" } ], @@ -119,7 +119,7 @@ const LandingPage = () => { title: "Global Insights", description: "Visualize worldwide data distribution and patterns", bentoComponent: "globe" }, { - title: "Integration Hub", description: "Connect with 500+ third-party applications", bentoComponent: "orbiting-icons", centerIcon: ZapIcon2, + title: "Integration Hub", description: "Connect with 500+ third-party applications", bentoComponent: "orbiting-icons", centerIcon: Zap, items: [ { icon: Database, ring: 1 }, { icon: Cloud, ring: 1 }, @@ -129,9 +129,9 @@ const LandingPage = () => { ] }, { - title: "Workflow Steps", description: "Build automation sequences tailored to your needs", bentoComponent: "3d-task-list", title: "Workflow Steps", items: [ + title: "Workflow Steps", description: "Build automation sequences tailored to your needs", bentoComponent: "3d-task-list", items: [ { icon: Play, label: "Trigger Event", time: "0s" }, - { icon: ZapIcon2, label: "Execute Action", time: "2s" }, + { icon: Zap, label: "Execute Action", time: "2s" }, { icon: CheckCircle, label: "Verify Output", time: "5s" } ] } @@ -164,7 +164,7 @@ const LandingPage = () => { title: "Security First", description: "Enterprise-grade encryption and compliance" }, { - icon: ZapIcon2, + icon: Zap, title: "Fast Processing", description: "Lightning-quick data transformation and analysis" } ]}