From 7790f31391b79674e113af3153c91e5dbf2e7c7e Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 5 Apr 2026 08:30:10 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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" } -- 2.49.1