From 7e86557347d663cce597af1bf248d9cf954b57be Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 21:25:01 +0000 Subject: [PATCH] Update src/app/about/page.tsx --- src/app/about/page.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 1f992b4..187af66 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -6,6 +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() { @@ -96,13 +97,13 @@ export default function AboutPage() { ]} kpiItems={[ { - value: "5.0", description: "Star Rating" + value: "5.0", title: "Star Rating", icon: Star }, { - value: "36", description: "Google Reviews" + value: "36", title: "Google Reviews", icon: MessageCircle }, { - value: "3+", description: "Years in Business" + value: "3+", title: "Years in Business", icon: Award }, ]} animationType="slide-up" -- 2.49.1