diff --git a/src/app/page.tsx b/src/app/page.tsx index 5757a12..6a2c41b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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() {
-
@@ -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" /> diff --git a/src/app/team/page.tsx b/src/app/team/page.tsx new file mode 100644 index 0000000..e1c078f --- /dev/null +++ b/src/app/team/page.tsx @@ -0,0 +1,104 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import TeamCardOne from '@/components/sections/team/TeamCardOne'; + +export default function TeamPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file