From 1616875c1f8a9dae8faa41f2399f2149d28d578c Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 15 May 2026 12:21:15 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index daac0a2..4f535b9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -112,6 +112,7 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={true} animationType="depth-3d" + cardClassName="border border-accent bg-card p-8 rounded-2xl shadow-inner" testimonials={[ { id: "1", name: "Sarah J.", role: "Patient", company: "Global Wellness", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/beautiful-senior-woman-enjoying-her-time-beach_23-2148992188.jpg" }, { id: "2", name: "Michael B.", role: "Guest", company: "Wellness Retreat", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-young-people-white-party_23-2149445618.jpg" }, @@ -134,6 +135,7 @@ export default function LandingPage() { animationType="scale-rotate" textboxLayout="split" useInvertedBackground={false} + cardClassName="border-2 border-accent bg-card rounded-xl p-6" plans={[ { id: "basic", badge: "Essential", price: "$1,200", subtitle: "Introductory Wellness", features: ["Consultation", "Daily Spa Treatment", "Natural Meals"], buttons: [{ text: "Book Now", href: "#contact" }] }, { id: "pro", badge: "Popular", price: "$2,500", subtitle: "Comprehensive Recovery", features: ["Full Consultation", "Daily Multiple Treatments", "Customized Diet", "Yoga & Meditation"], buttons: [{ text: "Book Now", href: "#contact" }] }, @@ -158,6 +160,7 @@ export default function LandingPage() { faqsAnimation="slide-up" imageSrc="http://img.b2bpic.net/free-photo/bunches-sticks-wooden-boxes_23-2147677809.jpg" mediaAnimation="slide-up" + accordionClassName="border-b border-accent py-4" /> @@ -169,6 +172,7 @@ export default function LandingPage() { title="Start Your Wellness Journey" description="Reach out to us to schedule your consultation or ask any questions about our therapy programs." buttons={[{ text: "Contact Us", href: "mailto:booking@soukya.com" }]} + className="border-t border-accent" /> @@ -182,4 +186,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 6f9182ac30fb9c0aedf38ecacb9715ff3adeac72 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 15 May 2026 12:21:15 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index b7afc67..6996194 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f5f4ef; - --card: #dad6cd; - --foreground: #2a2928; - --primary-cta: #2a2928; + --background: #fbfbfb; + --card: #f0ede9; + --foreground: #1a1a1a; + --primary-cta: #1a1a1a; --primary-cta-text: #f5f4ef; - --secondary-cta: #ecebea; + --secondary-cta: #e5e2de; --secondary-cta-text: #2a2928; - --accent: #ffffff; - --background-accent: #c6b180; + --accent: #c5b39a; + --background-accent: #f3f0ec; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1