2 Commits

Author SHA1 Message Date
b9f5d3b6d2 Update src/app/page.tsx 2026-04-22 23:13:30 +00:00
6be961a7cf Merge version_12 into main
Merge version_12 into main
2026-04-22 23:10:26 +00:00

View File

@@ -10,7 +10,7 @@ import HeroSplit from '@/components/sections/hero/HeroSplit';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
export default function LandingPage() {
return (
@@ -157,30 +157,21 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardOne
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
<TestimonialCardTwelve
cardTitle="Client Highlights"
cardTag="Featured Portraits"
cardAnimation="slide-up"
useInvertedBackground={false}
testimonials={[
{
id: "1", name: "Sarah J.", role: "Client", company: "Local", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/two-smiling-women-with-brushes-taking-selfie-makeup-mirror_23-2148113380.jpg"},
id: "1", name: "Sarah J.", imageSrc: "http://img.b2bpic.net/free-photo/two-smiling-women-with-brushes-taking-selfie-makeup-mirror_23-2148113380.jpg"},
{
id: "2", name: "Michael K.", role: "Client", company: "Local", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/gorgeous-smiling-blonde-fashion-model-sits-white-suit-soft-armchair_8353-5476.jpg"},
id: "2", name: "Michael K.", imageSrc: "http://img.b2bpic.net/free-photo/gorgeous-smiling-blonde-fashion-model-sits-white-suit-soft-armchair_8353-5476.jpg"},
{
id: "3", name: "Emily R.", role: "Client", company: "Local", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-beauty-portrait-topless-woman-with-perfect-skin-natural-makeup-plump-nude-lips-white-backgroundx9_343596-8012.jpg"},
id: "3", name: "Emily R.", imageSrc: "http://img.b2bpic.net/free-photo/close-beauty-portrait-topless-woman-with-perfect-skin-natural-makeup-plump-nude-lips-white-backgroundx9_343596-8012.jpg"},
{
id: "4", name: "David L.", role: "Client", company: "Local", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-portrait-blonde-african-young-women-holding-wooden-frame-front-their-face_23-2148178772.jpg"},
{
id: "5", name: "Jessica B.", role: "Client", company: "Local", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-shopping-mall_23-2150585900.jpg"},
id: "4", name: "David L.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-portrait-blonde-african-young-women-holding-wooden-frame-front-their-face_23-2148178772.jpg"},
]}
title="What Our Clients Say"
description="Real experiences from guests who trusted us with their beauty journey."
/>
</div>
@@ -213,4 +204,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}