diff --git a/src/app/page.tsx b/src/app/page.tsx
index 6760044..5374d53 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -11,8 +11,26 @@ import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCar
import ContactFaq from "@/components/sections/contact/ContactFaq";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { Hammer, CheckCircle, Wrench, Droplet, Lightbulb, Drill, PaintBucket, Home, Image, Star, Phone } from "lucide-react";
+import { useState } from "react";
export default function LandingPage() {
+ const [showContactForm, setShowContactForm] = useState(false);
+ const [formData, setFormData] = useState({
+ phone: "", email: "", address: ""
+ });
+
+ const handleFormSubmit = (e: React.FormEvent) => {
+ e.preventDefault();
+ // Handle form submission here
+ console.log("Form submitted:", formData);
+ setShowContactForm(false);
+ setFormData({ phone: "", email: "", address: "" });
+ };
+
+ const handleHeroButtonClick = () => {
+ setShowContactForm(true);
+ };
+
return (