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