From e2cf061b33224f9359fe78a366faed36e3221768 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 17:22:54 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 36 +++++++++++++++++++++++++----------- 1 file changed, 25 insertions(+), 11 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 609a848..d9959fe 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -14,6 +14,20 @@ import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; import { Award, Calendar, CheckCircle, Clock, DollarSign, Phone, Shield, Sparkles, Star, TrendingUp, Zap } from "lucide-react"; export default function LandingPage() { + const handleGetQuote = () => { + const contactSection = document.getElementById('contact'); + if (contactSection) { + contactSection.scrollIntoView({ behavior: 'smooth' }); + } + }; + + const handleBookCleaning = () => { + const contactSection = document.getElementById('contact'); + if (contactSection) { + contactSection.scrollIntoView({ behavior: 'smooth' }); + } + }; + return ( ); -} +} \ No newline at end of file