From cfb1194a554f60fcc076364c33846b4b09073903 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 09:52:03 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 46 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 36 insertions(+), 10 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1e7903d..215949b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,10 +8,27 @@ import ProductCardOne from '@/components/sections/product/ProductCardOne'; import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; import TextAbout from '@/components/sections/about/TextAbout'; -import ContactText from '@/components/sections/contact/ContactText'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterSimple from '@/components/sections/footer/FooterSimple'; +import { MapPin, Phone, Mail, Clock } from 'lucide-react'; export default function LandingPage() { + const [bookingFormData, setBookingFormData] = React.useState({ + name: '', + email: '', + phone: '', + service: '', + date: '', + time: '' + }); + + const handleBookingSubmit = (e: React.FormEvent) => { + e.preventDefault(); + console.log('Booking submitted:', bookingFormData); + alert('Thank you for your booking request! We will contact you shortly to confirm.'); + setBookingFormData({ name: '', email: '', phone: '', service: '', date: '', time: '' }); + }; + return (
- console.log('Booking email:', email)} />
@@ -227,4 +251,6 @@ export default function LandingPage() {
); -} \ No newline at end of file +} + +import React from 'react'; \ No newline at end of file -- 2.49.1 From 582c818a85460d0fd7d659fd48b43fbe89eba015 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 09:52:03 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 3f290fd..4d71cc4 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -11,14 +11,14 @@ --background-accent: #ffffff; */ --background: #ffffff; - --card: #f9f9f9; - --foreground: #120a00e6; - --primary-cta: #ff8c42; + --card: #f8f7f6; + --foreground: #2d2d2d; + --primary-cta: #d4a5a5; --primary-cta-text: #ffffff; - --secondary-cta: #f9f9f9; + --secondary-cta: #e8d5d1; --secondary-cta-text: #120a00e6; - --accent: #e2e2e2; - --background-accent: #c4c4c4; + --accent: #c9a98a; + --background-accent: #faf8f6; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1