diff --git a/src/app/page.tsx b/src/app/page.tsx index 8e7bb22..b4f68b2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { Zap } from "lucide-react"; +import { Zap, Gauge, PiggyBank, Cloud } from "lucide-react"; export default function HomePage() { const navItems = [ @@ -146,9 +146,9 @@ export default function HomePage() { title="Quantifiable Success, Powered by AI" description="We deliver measurable results that redefine industry benchmarks and drive sustainable business growth." metrics={[ - { id: "m1", value: "99.8%", title: "Accuracy in Predictive Models", description: "Achieved across diverse datasets for reliable forecasting.", icon: "Gauge" }, - { id: "m2", value: "70%+", title: "Reduction in Operational Costs", description: "Through intelligent automation and optimized workflows.", icon: "PiggyBank" }, - { id: "m3", value: "200M+", title: "Data Points Processed Daily", description: "Handling vast enterprise data with unparalleled speed and precision.", icon: "Cloud" }, + { id: "m1", value: "99.8%", title: "Accuracy in Predictive Models", description: "Achieved across diverse datasets for reliable forecasting.", icon: Gauge }, + { id: "m2", value: "70%+", title: "Reduction in Operational Costs", description: "Through intelligent automation and optimized workflows.", icon: PiggyBank }, + { id: "m3", value: "200M+", title: "Data Points Processed Daily", description: "Handling vast enterprise data with unparalleled speed and precision.", icon: Cloud }, ]} gridVariant="uniform-all-items-equal" animationType="depth-3d"