diff --git a/src/app/page.tsx b/src/app/page.tsx index aecb20e..b9d975c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,6 +10,7 @@ import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; +import { Rocket, Eye, TrendingUp } from 'lucide-react'; export default function LandingPage() { return ( @@ -88,9 +89,9 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="split" metrics={[ - { id: "m1", title: "Audience Growth", value: "300%", icon: (props: any) => 🚀 }, - { id: "m2", title: "Organic Impressions", value: "150M+", icon: (props: any) => 👁️ }, - { id: "m3", title: "Campaign ROI", value: "4.8x", icon: (props: any) => 📈 } + { id: "m1", title: "Audience Growth", value: "300%", icon: Rocket }, + { id: "m2", title: "Organic Impressions", value: "150M+", icon: Eye }, + { id: "m3", title: "Campaign ROI", value: "4.8x", icon: TrendingUp } ]} /> @@ -100,6 +101,7 @@ export default function LandingPage() { useInvertedBackground={true} title="What Clients Say" animationType="slide-up" + textboxLayout="default" testimonials={[ { id: "t1", name: "Alex Rivet", role: "CMO", testimonial: "The strategic insight provided by Pulse Media has been transformative for our brand growth.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg" }, { id: "t2", name: "Sarah Chen", role: "Director", testimonial: "Unmatched creative quality. They truly understand how to speak to our audience.", imageSrc: "http://img.b2bpic.net/free-photo/man-portrait-posing-loft-modern-space_158595-5366.jpg" }