From 4bfa6bf3b64964c9c26c4be0e05c43789769b23e Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Mar 2026 23:37:12 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 165 ++++++++++------------------------------------- 1 file changed, 33 insertions(+), 132 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 49d333c..d68f7fd 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -16,31 +16,23 @@ export default function LandingPage() { defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" + contentWidth="medium" + sizing="medium" + background="circleGradient" + cardStyle="glass-elevated" + primaryButtonStyle="gradient" + secondaryButtonStyle="glass" + headingFontWeight="normal" > @@ -116,21 +70,9 @@ export default function LandingPage() { title="Signature Treatments" description="Experience personalised care using the latest cosmetic advancements." accordionItems={[ - { - id: "1", - title: "Anti-Wrinkle Injections", - content: "Subtle, professional results to soften fine lines.", - }, - { - id: "2", - title: "Dermal Fillers", - content: "Restore volume and define your features naturally.", - }, - { - id: "3", - title: "Skin Rejuvenation", - content: "Advanced skincare to improve texture and radiance.", - }, + { id: "1", title: "Anti-Wrinkle Injections", content: "Subtle, professional results to soften fine lines." }, + { id: "2", title: "Dermal Fillers", content: "Restore volume and define your features naturally." }, + { id: "3", title: "Skin Rejuvenation", content: "Advanced skincare to improve texture and radiance." } ]} imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BVFWTOf4kRQuJF3pUVGfQa2UNG/close-up-artistic-shot-of-facial-skincar-1774568199466-99ee6987.png" mediaAnimation="blur-reveal" @@ -143,72 +85,31 @@ export default function LandingPage() { textboxLayout="split" gridVariant="bento-grid" useInvertedBackground={false} - testimonials={[ - { - id: "1", - name: "Sophie M.", - role: "Client", - company: "Sydney", - rating: 5, - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BVFWTOf4kRQuJF3pUVGfQa2UNG/bright-clinic-space-architectural-focus-1774568201746-98bbe42e.png", - }, - { - id: "2", - name: "Chloe T.", - role: "Client", - company: "Sydney", - rating: 5, - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BVFWTOf4kRQuJF3pUVGfQa2UNG/clinic-consultation-desk-1774568200927-c8113bb1.png", - }, - { - id: "3", - name: "Mia R.", - role: "Client", - company: "Sydney", - rating: 5, - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BVFWTOf4kRQuJF3pUVGfQa2UNG/comfortable-treatment-room-view-1774568200528-db4def54.png", - }, - { - id: "4", - name: "Elena P.", - role: "Client", - company: "Sydney", - rating: 5, - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BVFWTOf4kRQuJF3pUVGfQa2UNG/luxury-skincare-display-area-1774568200900-dee1d0fc.png", - }, - ]} title="Client Success Stories" description="See why our clients trust us with their natural enhancement journey." + testimonials={[ + { id: "1", name: "Sophie M.", role: "Client", company: "Sydney", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BVFWTOf4kRQuJF3pUVGfQa2UNG/bright-clinic-space-architectural-focus-1774568201746-98bbe42e.png" }, + { id: "2", name: "Chloe T.", role: "Client", company: "Sydney", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BVFWTOf4kRQuJF3pUVGfQa2UNG/clinic-consultation-desk-1774568200927-c8113bb1.png" }, + { id: "3", name: "Mia R.", role: "Client", company: "Sydney", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BVFWTOf4kRQuJF3pUVGfQa2UNG/comfortable-treatment-room-view-1774568200528-db4def54.png" }, + { id: "4", name: "Elena P.", role: "Client", company: "Sydney", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BVFWTOf4kRQuJF3pUVGfQa2UNG/luxury-skincare-display-area-1774568200900-dee1d0fc.png" } + ]} />
-- 2.49.1