Update src/app/page.tsx
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
||||
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
@@ -187,17 +187,19 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1", name: "AC Repair & Maintenance", price: "Starting at $89", imageSrc: "http://img.b2bpic.net/free-photo/coworkers-refill-air-conditioner-freon_482257-90737.jpg", imageAlt: "HVAC technician repairing an outdoor AC unit"},
|
||||
id: "1", name: "Air Conditioning Services", price: "Starting at $89", imageSrc: "http://img.b2bpic.net/free-photo/coworkers-refill-air-conditioner-freon_482257-90737.jpg", imageAlt: "HVAC technician repairing an outdoor AC unit"},
|
||||
{
|
||||
id: "2", name: "Furnace Installation", price: "Custom Quote", imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-s-hand-touching-vintage-machine_23-2148180331.jpg", imageAlt: "Technician installing a new furnace"},
|
||||
id: "2", name: "Heating System Services", price: "Custom Quote", imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-s-hand-touching-vintage-machine_23-2148180331.jpg", imageAlt: "Technician installing a new furnace"},
|
||||
{
|
||||
id: "3", name: "Duct Cleaning Services", price: "Starting at $199", imageSrc: "http://img.b2bpic.net/free-photo/woman-white-shirt-black-pants-doing-selfie-using-smartphone-happy-positive-smiling-showing-v-sign-sitting-chair-light-living-room_141793-101885.jpg", imageAlt: "Specialized equipment for air duct cleaning"},
|
||||
id: "3", name: "Heat Pump Services", price: "Custom Quote", imageSrc: "http://img.b2bpic.net/free-photo/solar-panels-background_23-2149591146.jpg", imageAlt: "Heat pump installation and repair"},
|
||||
{
|
||||
id: "4", name: "Preventative Maintenance", price: "Annual Plans", imageSrc: "http://img.b2bpic.net/free-photo/close-up-worker-checking-freon-tank_482257-78533.jpg", imageAlt: "Technician performing routine HVAC inspection"},
|
||||
id: "4", name: "Thermostat Installation & Repair", price: "Starting at $149", imageSrc: "http://img.b2bpic.net/free-photo/close-up-tablet-with-smart-tv-control_23-2148994125.jpg", imageAlt: "Technician installing a smart thermostat"},
|
||||
{
|
||||
id: "5", name: "Emergency HVAC Service", price: "24/7 Availability", imageSrc: "http://img.b2bpic.net/free-photo/defective-external-air-conditioner_482257-91071.jpg", imageAlt: "HVAC technician responding to an emergency call"},
|
||||
id: "5", name: "Duct Cleaning & Air Quality", price: "Starting at $199", imageSrc: "http://img.b2bpic.net/free-photo/woman-white-shirt-black-pants-doing-selfie-using-smartphone-happy-positive-smiling-showing-v-sign-sitting-chair-light-living-room_141793-101885.jpg", imageAlt: "Specialized equipment for air duct cleaning"},
|
||||
{
|
||||
id: "6", name: "Smart Thermostat Installation", price: "Starting at $149", imageSrc: "http://img.b2bpic.net/free-photo/close-up-tablet-with-smart-tv-control_23-2148994125.jpg", imageAlt: "Technician installing a smart thermostat"},
|
||||
id: "6", name: "24/7 Emergency HVAC Service", price: "Immediate Response", imageSrc: "http://img.b2bpic.net/free-photo/defective-external-air-conditioner_482257-91071.jpg", imageAlt: "HVAC technician responding to an emergency call"},
|
||||
{
|
||||
id: "7", name: "Preventative Maintenance Plans", price: "Annual Plans", imageSrc: "http://img.b2bpic.net/free-photo/close-up-worker-checking-freon-tank_482257-78533.jpg", imageAlt: "Technician performing routine HVAC inspection"}
|
||||
]}
|
||||
title="Our Premier HVAC Services"
|
||||
description="From emergency repairs to full system installations, we cover all your heating and cooling needs."
|
||||
@@ -294,19 +296,28 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "radial-gradient"}}
|
||||
tag="Ready for Comfort?"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-man-working-as-plumber_23-2150746293.jpg"
|
||||
imageAlt="HVAC technician working"
|
||||
mediaPosition="right"
|
||||
title="Schedule Your HVAC Service Today"
|
||||
description="Don't let a faulty system disrupt your peace of mind. Contact us now for reliable and prompt service, and experience the difference."
|
||||
buttons={[
|
||||
description="Fill out the form below to schedule a service or request a free quote. Our team will get back to you promptly."
|
||||
inputs={[
|
||||
{
|
||||
text: "Request a Service", href: "#"},
|
||||
name: "firstName", type: "text", placeholder: "First Name", required: true
|
||||
},
|
||||
{
|
||||
text: "Call Us Now", href: "tel:+18001234567"},
|
||||
name: "lastName", type: "text", placeholder: "Last Name", required: true
|
||||
},
|
||||
{
|
||||
name: "email", type: "email", placeholder: "Email", required: true
|
||||
},
|
||||
{
|
||||
name: "phone", type: "tel", placeholder: "Phone", required: true
|
||||
}
|
||||
]}
|
||||
buttonText="Submit Request"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -316,15 +327,19 @@ export default function LandingPage() {
|
||||
{
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "AC Repair", href: "#services"},
|
||||
label: "Air Conditioning Services", href: "#services"},
|
||||
{
|
||||
label: "Furnace Installation", href: "#services"},
|
||||
label: "Heating System Services", href: "#services"},
|
||||
{
|
||||
label: "Duct Cleaning", href: "#services"},
|
||||
label: "Heat Pump Services", href: "#services"},
|
||||
{
|
||||
label: "Maintenance Plans", href: "#pricing"},
|
||||
label: "Thermostat Installation & Repair", href: "#services"},
|
||||
{
|
||||
label: "Emergency Service", href: "#services"},
|
||||
label: "Duct Cleaning & Air Quality", href: "#services"},
|
||||
{
|
||||
label: "Preventative Maintenance Plans", href: "#pricing"},
|
||||
{
|
||||
label: "24/7 Emergency HVAC Service", href: "#services"},
|
||||
],
|
||||
},
|
||||
{
|
||||
@@ -354,17 +369,19 @@ export default function LandingPage() {
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{
|
||||
label: "Get a Quote", href: "#contact"},
|
||||
label: "Location: 221 Gunther Place, Glen Burnie, Maryland 21060"},
|
||||
{
|
||||
label: "Support", href: "#"},
|
||||
{
|
||||
label: "Call Us: (800) 123-4567", href: "tel:+18001234567"},
|
||||
label: "Phone: 301-246-2456", href: "tel:3012462456"},
|
||||
{
|
||||
label: "Email: info@usahvac.com", href: "mailto:info@usahvac.com"},
|
||||
{
|
||||
label: "Facebook", href: "https://facebook.com/usahvacservices"},
|
||||
{
|
||||
label: "Instagram", href: "https://instagram.com/usahvacservices"}
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2024 USA HVAC Services. All rights reserved."
|
||||
bottomLeftText="Copyright © 2026 USA HVAC Services"
|
||||
bottomRightText="Privacy Policy | Terms of Service"
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user