From eeee89ab52abbec12bba5f4dafb28ea782f8d4d9 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 21:23:13 +0000 Subject: [PATCH 1/2] Update src/app/about/page.tsx --- src/app/about/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 1f5aeed..06a79e9 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -6,7 +6,7 @@ import MediaAbout from "@/components/sections/about/MediaAbout"; import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven"; import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen"; import Link from "next/link"; -import { Star, MessageCircle, Award } from "lucide-react"; + export default function AboutPage() { const navItems = [ @@ -96,13 +96,13 @@ export default function AboutPage() { ]} kpiItems={[ { - value: "5.0", icon: Star + value: "5.0", title: "Star Rating" }, { - value: "36", icon: MessageCircle + value: "36", title: "Google Reviews" }, { - value: "3+", icon: Award + value: "3+", title: "Years in Business" }, ]} animationType="slide-up" -- 2.49.1 From 8bc1242b3441354c493a030c4e38d6d6403d28cf Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 21:23:13 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7a90cd9..4ff2a67 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import ProductCardThree from '@/components/sections/product/ProductCardThree'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; import MediaAbout from '@/components/sections/about/MediaAbout'; import Link from 'next/link'; -import { Star, MessageCircle, Award } from 'lucide-react'; + export default function HomePage() { const navItems = [ @@ -134,9 +134,9 @@ export default function HomePage() { { id: "4", name: "David K.", role: "Homeowner", company: "Jacksonville", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-fit-person-jogging-by-sea_329181-16763.jpg", imageAlt: "David K. testimonial avatar" } ]} kpiItems={[ - { value: "5.0", icon: Star }, - { value: "36", icon: MessageCircle }, - { value: "3+", icon: Award } + { value: "5.0", title: "Star Rating" }, + { value: "36", title: "Google Reviews" }, + { value: "3+", title: "Years in Business" } ]} animationType="slide-up" textboxLayout="default" -- 2.49.1