Update src/app/page.tsx

This commit is contained in:
2026-05-19 04:12:21 +00:00
parent 3589ce05cc
commit fb36eec4bc

View File

@@ -37,7 +37,7 @@ export default function HvacPage() {
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
button={{ text: "(785) 263-2412", onClick: () => window.location.href = "mailto:info@smithhvac.com?subject=Request for Quote" }}
button={{ text: "(785) 263-2412", onClick: () => window.location.href = "tel:+17852632412" }}
animateOnLoad={false}
/>
</div>
@@ -47,7 +47,7 @@ export default function HvacPage() {
title="Your Comfort, Our Commitment"
description="Honest HVAC service you can trust. Same-day response, fair pricing, and 20 years of local expertise."
buttons={[
{ text: "(785) 263-2412", onClick: () => window.location.href = "mailto:info@smithhvac.com?subject=Request for Quote" },
{ text: "(785) 263-2412", onClick: () => window.location.href = "tel:+17852632412" },
]}
buttonAnimation="slide-up"
imageSrc="https://img.b2bpic.net/free-photo/close-up-ventilation-system_23-2149388984.jpg?id=25777576"
@@ -138,7 +138,7 @@ export default function HvacPage() {
tag="Contact"
title="Ready to Fix Your HVAC?"
description="Give us a call to schedule your service or consultation."
buttons={[{ text: "(785) 263-2412", onClick: () => window.location.href = "mailto:info@smithhvac.com?subject=Request for Quote" }]}
buttons={[{ text: "(785) 263-2412", onClick: () => window.location.href = "tel:+17852632412" }]}
background={{ variant: "radial-gradient" }}
useInvertedBackground={true}
/>
@@ -151,11 +151,11 @@ export default function HvacPage() {
columns={[
{ title: "Services", items: [{ label: "Repairs", href: "#services" }, { label: "Installation", href: "#services" }] },
{ title: "Company", items: [{ label: "About", href: "#about" }, { label: "Reviews", href: "#testimonials" }] },
{ title: "Contact", items: [{ label: "Email Us", onClick: () => window.location.href = "mailto:info@smithhvac.com?subject=Request for Quote" }, { label: "318 NE 14th St, Abilene, KS 67410", href: "#" }] },
{ title: "Contact", items: [{ label: "(785) 263-2412", href: "tel:+17852632412" }, { label: "318 NE 14th St, Abilene, KS 67410", href: "#" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}