From 045c1331db856ec1dd84781edba54d977180f953 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 19:46:55 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6871c0f..05d741c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,6 +11,7 @@ import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSp import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; +import { Star } from "lucide-react"; export default function LandingPage() { return ( @@ -140,10 +141,13 @@ export default function LandingPage() { animationType="blur-reveal" textboxLayout="default" useInvertedBackground={true} + icon={Star} + iconClassName="text-yellow-400 fill-yellow-400" + ratingClassName="text-yellow-400" testimonials={[ - { id: "1", name: "Sarah J.", handle: "Client", testimonial: "Suva is incredibly patient and thorough. The aloe massage at the end is just wonderful!", rating: 5 }, - { id: "2", name: "Michael C.", handle: "Client", testimonial: "I drive from outside Atlanta just for her threading. She never rushes and always listens.", rating: 5 }, - { id: "3", name: "Emily R.", handle: "Client", testimonial: "Rated 5 stars for a reason! Precision, professionalism, and pure kindness every visit.", rating: 5 } + { id: "1", name: "Sarah J.", handle: "Client", testimonial: "Suva is incredibly patient and thorough. The aloe massage at the end is just wonderful!", rating: 5, icon: Star }, + { id: "2", name: "Michael C.", handle: "Client", testimonial: "I drive from outside Atlanta just for her threading. She never rushes and always listens.", rating: 5, icon: Star }, + { id: "3", name: "Emily R.", handle: "Client", testimonial: "Rated 5 stars for a reason! Precision, professionalism, and pure kindness every visit.", rating: 5, icon: Star } ]} /> -- 2.49.1