Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-06-09 19:39:54 +00:00
2 changed files with 146 additions and 25 deletions

View File

@@ -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>

104
src/app/team/page.tsx Normal file
View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="medium"
sizing="largeSmallSizeMediumTitles"
background="circleGradient"
cardStyle="inset"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "#home" },
{ name: "HVAC Services", id: "#services" },
{ name: "Reviews", id: "#testimonials" },
{ name: "Need Financing?", id: "#pricing" },
{ name: "Team", id: "/team" },
{ name: "About Us", id: "#about" },
{ name: "Locations", id: "/locations" },
{ name: "Contact Us", id: "#contact" }
]}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/default-logo-transparent.png?_wi=1"
logoAlt="USA HVAC Services Logo"
brandName="USA HVAC Services"
button={{ text: "Book Now", href: "#contact" }}
/>
</div>
<div className="min-h-[calc(100vh-theme(spacing.72))] flex flex-col justify-center items-center py-20">
<TeamCardOne
animationType="slide-up"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
title="Meet Our Expert Team"
description="Dedicated to your comfort, our certified technicians and support staff are the best in the business."
members={[
{ id: "1", name: "Johnathan Doe", role: "Lead HVAC Technician", imageSrc: "http://img.b2bpic.net/free-photo/electrician-working-electric-box_23-2149591146.jpg", imageAlt: "Johnathan Doe" },
{ id: "2", name: "Sarah Chen", role: "Customer Service Manager", imageSrc: "http://img.b2bpic.net/free-photo/pretty-woman-holding-clipboard-looking-camera_23-2148114421.jpg", imageAlt: "Sarah Chen" },
{ id: "3", name: "Michael Rodriguez", role: "HVAC Specialist", imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-working-with-tools_23-2149454848.jpg", imageAlt: "Michael Rodriguez" },
{ id: "4", name: "Emily White", role: "Operations Coordinator", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-with-glasses_23-2148455798.jpg", imageAlt: "Emily White" },
{ id: "5", name: "David Lee", role: "Installation Expert", imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-with-electric-meter_23-2148456248.jpg", imageAlt: "David Lee" }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Services", items: [
{ label: "AC Repair", href: "#services" },
{ label: "Furnace Installation", href: "#services" },
{ label: "Duct Cleaning", href: "#services" },
{ label: "Maintenance Plans", href: "#pricing" },
{ label: "Emergency Service", href: "#services" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Our Mission", href: "#about" },
{ label: "Why Choose Us", href: "#features" },
{ label: "Careers", href: "#" }
]
},
{
title: "Resources", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Blog", href: "#" },
{ label: "Customer Stories", href: "#testimonials" },
{ label: "Service Areas", href: "/locations" }
]
},
{
title: "Contact", items: [
{ label: "Get a Quote", href: "#contact" },
{ label: "Support", href: "#" },
{ label: "Call Us: 301-246-2456", href: "tel:+13012462456" },
{ label: "Email: info@usahvac.com", href: "mailto:info@usahvac.com" }
]
}
]}
bottomLeftText="© 2024 USA HVAC Services. All rights reserved."
bottomRightText="Privacy Policy | Terms of Service"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}