From 4647d930eb4d4830af6ffffacc2c4c901ebc72d3 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 08:20:12 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 25 ++++++++----------------- 1 file changed, 8 insertions(+), 17 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 876442b..ca864f1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,7 +8,7 @@ import ProductCardOne from '@/components/sections/product/ProductCardOne'; import FeatureBento from '@/components/sections/feature/FeatureBento'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import { Award, CheckCircle, Heart, MapPin, Shield, Sparkles, Star, Users, Zap, Phone, MessageCircle } from 'lucide-react'; @@ -192,7 +192,8 @@ export default function LandingPage() {
- { - const phone = data.phone.replace(/\D/g, ''); - const name = encodeURIComponent(data.name); - const message = encodeURIComponent(`Hi! I'm ${data.name} and I'd like to book an appointment at Ginza Beauty.`); - window.open(`https://wa.me/971434071171?text=${message}`, '_blank'); - }} + background={{ variant: "plain" }} + tagIcon={MapPin} + tagAnimation="slide-up" + buttonText="Get In Touch" + onSubmit={() => {}} />
-- 2.49.1 From 878ac58bc7e3c27ef9038e2ab304839ab5f0df2d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 08:20:13 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 7a12233..060eec9 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -13,12 +13,12 @@ --background: #fffafa; --card: #fff7f7; --foreground: #1a0000; - --primary-cta: #e63946; + --primary-cta: #ebb4ba; --primary-cta-text: #fffafa; --secondary-cta: #ffffff; --secondary-cta-text: #1a0000; - --accent: #f5c4c7; - --background-accent: #f09199; + --accent: #ebb4ba; + --background-accent: #ebb4ba; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1