4 Commits

Author SHA1 Message Date
ab759eeee2 Update src/app/page.tsx 2026-03-27 09:15:44 +00:00
148eda4363 Merge version_2 into main
Merge version_2 into main
2026-03-27 09:12:00 +00:00
0d9075cba3 Update src/app/page.tsx 2026-03-27 09:11:57 +00:00
eaa8c1bf3c Merge version_1 into main
Merge version_1 into main
2026-03-27 08:56:11 +00:00

View File

@@ -41,7 +41,10 @@ export default function LandingPage() {
<HeroLogo
logoText="Fast & Reliable Plumbing"
description="24/7 Emergency Plumbing • Licensed & Insured • Same-Day Service. Serving your city and surrounding areas."
buttons={[{ text: "Call Now", href: "tel:5550199" }]}
buttons={[
{ text: "Call Now", href: "tel:5550199" },
{ text: "Get a Free Quote", href: "#contact" }
]}
imageSrc="http://img.b2bpic.net/free-photo/sanitary-technician-working-with-sink_23-2147772219.jpg"
imageAlt="professional plumber working in home"
/>
@@ -101,7 +104,8 @@ export default function LandingPage() {
imageAlt="plumber on phone talking"
inputs={[
{ name: "name", type: "text", placeholder: "Name", required: true },
{ name: "phone", type: "tel", placeholder: "Phone", required: true }
{ name: "phone", type: "tel", placeholder: "Phone", required: true },
{ name: "service_type", type: "text", placeholder: "Service Type (e.g. Repair, Install)", required: true }
]}
textarea={{ name: "need", placeholder: "What do you need help with?", rows: 4 }}
/>
@@ -121,4 +125,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}