diff --git a/src/app/page.tsx b/src/app/page.tsx index 2ef3b0d..9b4730c 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, Award, Target, Star, HelpCircle, Home, BarChart3, Settings, Check, Clock, Hexagon } from 'lucide-react'; +import { Sparkles, Zap, Award, Target, Star, HelpCircle, Home, BarChart3, Settings, Check, Clock, Hexagon, Shield, Users, TrendingUp, Smartphone, Brain } from 'lucide-react'; export default function LandingPage() { return ( @@ -67,9 +67,9 @@ export default function LandingPage() { { icon: Settings, active: false } ], stats: [ - { title: "Automation Rate", values: ["78%", "82%", "89%"], description: "Tasks auto-completed daily" }, - { title: "Time Saved", values: ["12h", "18h", "24h"], valueSuffix: "/week", description: "Per team member" }, - { title: "Revenue Impact", values: ["$45K", "$67K", "$92K"], valuePrefix: "+", description: "Monthly efficiency gains" } + { title: "Automation Rate", values: [78, 82, 89], description: "Tasks auto-completed daily" }, + { title: "Time Saved", values: [12, 18, 24], valueSuffix: "/week", description: "Per team member" }, + { title: "Revenue Impact", values: [45, 67, 92], valuePrefix: "+", description: "Monthly efficiency gains" } ], chartTitle: "Automation Trend", chartData: [ { value: 45 }, @@ -127,11 +127,11 @@ export default function LandingPage() { useInvertedBackground={false} features={[ { icon: Zap, title: "Lightning Fast", description: "Process millions of data points in milliseconds with our optimized infrastructure and edge computing" }, - { icon: Award, title: "Enterprise Security", description: "Bank-grade encryption and compliance with SOC 2, GDPR, and HIPAA standards built-in" }, - { icon: Home, title: "Team Collaboration", description: "Real-time sharing, version control, and permission management for seamless teamwork" }, - { icon: BarChart3, title: "Scalable by Design", description: "Grows with your business from startup to enterprise without performance degradation" }, - { icon: Settings, title: "Mobile First", description: "Manage automation workflows on the go with our iOS and Android applications" }, - { icon: Sparkles, title: "AI-Powered Insights", description: "Advanced machine learning that continuously learns from your data to improve automation accuracy" } + { icon: Shield, title: "Enterprise Security", description: "Bank-grade encryption and compliance with SOC 2, GDPR, and HIPAA standards built-in" }, + { icon: Users, title: "Team Collaboration", description: "Real-time sharing, version control, and permission management for seamless teamwork" }, + { icon: TrendingUp, title: "Scalable by Design", description: "Grows with your business from startup to enterprise without performance degradation" }, + { icon: Smartphone, title: "Mobile First", description: "Manage automation workflows on the go with our iOS and Android applications" }, + { icon: Brain, title: "AI-Powered Insights", description: "Advanced machine learning that continuously learns from your data to improve automation accuracy" } ]} />