8 Commits

Author SHA1 Message Date
7a37d7df2a Switch to version 6: modified src/app/page.tsx 2026-04-18 16:53:08 +00:00
742f05c522 Merge version_7 into main
Merge version_7 into main
2026-04-18 16:52:07 +00:00
1dcd7e03a3 Update src/app/page.tsx 2026-04-18 16:52:04 +00:00
055a4b46b0 Switch to version 5: modified src/app/page.tsx 2026-04-17 19:47:31 +00:00
437ff40a67 Merge version_6 into main
Merge version_6 into main
2026-04-17 19:46:58 +00:00
045c1331db Update src/app/page.tsx 2026-04-17 19:46:55 +00:00
06e469ceb4 Merge version_5 into main
Merge version_5 into main
2026-04-17 19:44:56 +00:00
4ed0c0a088 Merge version_5 into main
Merge version_5 into main
2026-04-17 19:44:24 +00:00

View File

@@ -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 }
]}
/>
</div>