diff --git a/src/app/page.tsx b/src/app/page.tsx index 7460e46..d369852 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,8 +10,15 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterSimple from '@/components/sections/footer/FooterSimple'; import { Award, CheckCircle, Clock, MessageSquare, Phone, Shield, Sparkles, Star, Wrench } from 'lucide-react'; +import { useRouter } from 'next/navigation'; export default function LandingPage() { + const router = useRouter(); + + const handleFreeInspection = () => { + router.push('/signup'); + }; + return ( ) => { + const { name, value } = e.target; + setFormData(prev => ({ + ...prev, + [name]: value + })); + }; + + const handleSubmit = (e: React.FormEvent) => { + e.preventDefault(); + // Here you would typically send the form data to your backend + setSubmitted(true); + setTimeout(() => { + router.push('/'); + }, 3000); + }; + + return ( + + + +
+
+ {!submitted ? ( +
+
+

+ Free Roof Inspection Sign-Up +

+

+ Join thousands of Atlanta homeowners who trust AmeriPro Roofing. Get your free inspection scheduled today. +

+
+ +
+
+
+ + +
+
+ + +
+
+ +
+
+ + +
+
+ + +
+
+ +
+
+ + +
+
+ + +
+
+ +
+ +