Merge version_1 into main #1
452
src/app/page.tsx
452
src/app/page.tsx
@@ -15,332 +15,152 @@ import { Headphones, MapPin, Package, Percent, Shield, ShieldCheck, Truck, Zap }
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "services",
|
||||
},
|
||||
{
|
||||
name: "Why Us",
|
||||
id: "why-us",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "cta",
|
||||
},
|
||||
]}
|
||||
brandName="The HVAC Connection"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Why Us", id: "why-us" },
|
||||
{ name: "Contact", id: "cta" },
|
||||
]}
|
||||
brandName="The HVAC Connection"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitTestimonial
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
title="HVAC Done Right. Fast, Affordable, and Honest."
|
||||
description="Your local source for HVAC systems, parts, and unbeatable deals in Dallas, GA. Same-day availability for homeowners and contractors."
|
||||
testimonials={[
|
||||
{
|
||||
name: "David T.",
|
||||
handle: "@customer",
|
||||
testimonial: "They had exactly what I needed SAME DAY at an amazing price.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-heat-pump-outside-home_23-2149250256.jpg",
|
||||
},
|
||||
{
|
||||
name: "Joe M.",
|
||||
handle: "@customer",
|
||||
testimonial: "Best place for all your HVAC needs… great customer service.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-ventilation-system_23-2149281319.jpg",
|
||||
},
|
||||
{
|
||||
name: "Juan G.",
|
||||
handle: "@customer",
|
||||
testimonial: "Easy to deal with and real good deals.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-ventilation-system_23-2149281307.jpg",
|
||||
},
|
||||
{
|
||||
name: "Raymond K.",
|
||||
handle: "@customer",
|
||||
testimonial: "Honest and helpful — hard to find these days.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-building-with-tree-city_23-2148798648.jpg",
|
||||
},
|
||||
{
|
||||
name: "Sarah L.",
|
||||
handle: "@customer",
|
||||
testimonial: "Incredible inventory and super friendly staff.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-ventilation-system_23-2149281314.jpg",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now",
|
||||
href: "tel:5550102",
|
||||
},
|
||||
{
|
||||
text: "Browse Inventory",
|
||||
href: "#services",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-heat-pump-outside-home_23-2149250245.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-ventilation-system_23-2149388998.jpg",
|
||||
alt: "Customer profile 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-ventilation-system_23-2149388967.jpg",
|
||||
alt: "Customer profile 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/worker-with-tablet-settings_1098-13961.jpg",
|
||||
alt: "Customer profile 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-loader-holding-board-with-hand-head-uniform-looking-pensive-front-view_176474-21345.jpg",
|
||||
alt: "Customer profile 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/mechanic-writing-clipboard_1170-1209.jpg",
|
||||
alt: "Customer profile 5",
|
||||
},
|
||||
]}
|
||||
avatarText="Trusted by 500+ Local Pros"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Same-Day Delivery",
|
||||
icon: Truck,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Certified Parts",
|
||||
icon: ShieldCheck,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Local Business",
|
||||
icon: MapPin,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Expert Support",
|
||||
icon: Headphones,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Best Pricing",
|
||||
icon: Percent,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitTestimonial
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="HVAC Done Right. Fast, Affordable, and Honest."
|
||||
description="Your local source for HVAC systems, parts, and unbeatable deals in Dallas, GA. Same-day availability for homeowners and contractors."
|
||||
testimonials={[
|
||||
{ name: "David T.", handle: "@customer", testimonial: "They had exactly what I needed SAME DAY at an amazing price.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-heat-pump-outside-home_23-2149250256.jpg" },
|
||||
{ name: "Joe M.", handle: "@customer", testimonial: "Best place for all your HVAC needs… great customer service.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-ventilation-system_23-2149281319.jpg" },
|
||||
{ name: "Juan G.", handle: "@customer", testimonial: "Easy to deal with and real good deals.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-ventilation-system_23-2149281307.jpg" },
|
||||
{ name: "Raymond K.", handle: "@customer", testimonial: "Honest and helpful — hard to find these days.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/low-angle-building-with-tree-city_23-2148798648.jpg" },
|
||||
{ name: "Sarah L.", handle: "@customer", testimonial: "Incredible inventory and super friendly staff.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-ventilation-system_23-2149281314.jpg" }
|
||||
]}
|
||||
buttons={[{ text: "Call Now", href: "tel:5550102" }, { text: "Browse Inventory", href: "#services" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-heat-pump-outside-home_23-2149250245.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-ventilation-system_23-2149388998.jpg", alt: "Customer profile 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-ventilation-system_23-2149388967.jpg", alt: "Customer profile 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/worker-with-tablet-settings_1098-13961.jpg", alt: "Customer profile 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/young-loader-holding-board-with-hand-head-uniform-looking-pensive-front-view_176474-21345.jpg", alt: "Customer profile 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/mechanic-writing-clipboard_1170-1209.jpg", alt: "Customer profile 5" }
|
||||
]}
|
||||
avatarText="Trusted by 500+ Local Pros"
|
||||
marqueeItems={[
|
||||
{ type: "text-icon", text: "Same-Day Delivery", icon: Truck },
|
||||
{ type: "text-icon", text: "Certified Parts", icon: ShieldCheck },
|
||||
{ type: "text-icon", text: "Local Business", icon: MapPin },
|
||||
{ type: "text-icon", text: "Expert Support", icon: Headphones },
|
||||
{ type: "text-icon", text: "Best Pricing", icon: Percent }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
"Homeowners Association",
|
||||
"Dallas HVAC Pros",
|
||||
"Residential Developers",
|
||||
"Local Contractors",
|
||||
"Commercial Property Managers",
|
||||
"Fast Track Installs",
|
||||
"Georgia Comfort Solutions",
|
||||
]}
|
||||
title="Trusted by Pros & Locals"
|
||||
description="Join satisfied customers who make us their first choice for HVAC supplies in Georgia."
|
||||
/>
|
||||
</div>
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
names={["Homeowners Association", "Dallas HVAC Pros", "Residential Developers", "Local Contractors", "Commercial Property Managers", "Fast Track Installs", "Georgia Comfort Solutions"]}
|
||||
title="Trusted by Pros & Locals"
|
||||
description="Join satisfied customers who make us their first choice for HVAC supplies in Georgia."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "HVAC Systems",
|
||||
price: "Call for Pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-ventilation-system_23-2149281317.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Parts & Equipment",
|
||||
price: "Wholesale Pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/technician-investigating-malfunctioning-systems-photovoltaics-factory_482257-125762.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Condensers & Coils",
|
||||
price: "In Stock Today",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-man-looking-male-tailor-taking-fabric-from-shelf-workshop_23-2148180378.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Same-Day Solutions",
|
||||
price: "Pickup Today",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-rural-travellers-driving-through-country-side_23-2149052451.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Air Handlers",
|
||||
price: "Call for Pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tilt-up-shot-out-service-condenser-unit-with-protection-cover-removed-need-fixing-with-damaged-electric-internal-parts-outside-hvac-system-working-anymore-ready-be-fixed_482257-64976.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Custom Hardware",
|
||||
price: "Inquire",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smart-factory-expert-using-digital-device-app-test-automated-systems-closeup_482257-120554.jpg",
|
||||
},
|
||||
]}
|
||||
title="Everything You Need. All in One Place."
|
||||
description="High-quality HVAC systems, parts, and wholesale components available for same-day pickup."
|
||||
/>
|
||||
</div>
|
||||
<div id="services" data-section="services">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "p1", name: "HVAC Systems", price: "Call for Pricing", imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-ventilation-system_23-2149281317.jpg" },
|
||||
{ id: "p2", name: "Parts & Equipment", price: "Wholesale Pricing", imageSrc: "http://img.b2bpic.net/free-photo/technician-investigating-malfunctioning-systems-photovoltaics-factory_482257-125762.jpg" },
|
||||
{ id: "p3", name: "Condensers & Coils", price: "In Stock Today", imageSrc: "http://img.b2bpic.net/free-photo/senior-man-looking-male-tailor-taking-fabric-from-shelf-workshop_23-2148180378.jpg" },
|
||||
{ id: "p4", name: "Same-Day Solutions", price: "Pickup Today", imageSrc: "http://img.b2bpic.net/free-photo/young-rural-travellers-driving-through-country-side_23-2149052451.jpg" },
|
||||
{ id: "p5", name: "Air Handlers", price: "Call for Pricing", imageSrc: "http://img.b2bpic.net/free-photo/tilt-up-shot-out-service-condenser-unit-with-protection-cover-removed-need-fixing-with-damaged-electric-internal-parts-outside-hvac-system-working-anymore-ready-be-fixed_482257-64976.jpg" },
|
||||
{ id: "p6", name: "Custom Hardware", price: "Inquire", imageSrc: "http://img.b2bpic.net/free-photo/smart-factory-expert-using-digital-device-app-test-automated-systems-closeup_482257-120554.jpg" }
|
||||
]}
|
||||
title="Everything You Need. All in One Place."
|
||||
description="High-quality HVAC systems, parts, and wholesale components available for same-day pickup."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="why-us" data-section="why-us">
|
||||
<FeatureBorderGlow
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
icon: Shield,
|
||||
title: "Honest & Transparent",
|
||||
description: "No upsells, no games — just real help for your specific project.",
|
||||
},
|
||||
{
|
||||
icon: Package,
|
||||
title: "Massive Inventory",
|
||||
description: "Multiple brands, options, and price points stocked daily.",
|
||||
},
|
||||
{
|
||||
icon: Zap,
|
||||
title: "Fast Turnaround",
|
||||
description: "Get what you need today — not next week. Same-day solutions available.",
|
||||
},
|
||||
{
|
||||
icon: MapPin,
|
||||
title: "Local & Reliable",
|
||||
description: "Located right here in Dallas, GA. No more driving an hour for supplies.",
|
||||
},
|
||||
]}
|
||||
title="Built on Trust, Speed, and Real Value"
|
||||
description="We are your local HVAC partner, dedicated to providing the right equipment at honest prices."
|
||||
/>
|
||||
</div>
|
||||
<div id="why-us" data-section="why-us">
|
||||
<FeatureBorderGlow
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{ icon: Shield, title: "Honest & Transparent", description: "No upsells, no games — just real help for your specific project." },
|
||||
{ icon: Package, title: "Massive Inventory", description: "Multiple brands, options, and price points stocked daily." },
|
||||
{ icon: Zap, title: "Fast Turnaround", description: "Get what you need today — not next week. Same-day solutions available." },
|
||||
{ icon: MapPin, title: "Local & Reliable", description: "Located right here in Dallas, GA. No more driving an hour for supplies." }
|
||||
]}
|
||||
title="Built on Trust, Speed, and Real Value"
|
||||
description="We are your local HVAC partner, dedicated to providing the right equipment at honest prices."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="how-it-works" data-section="how-it-works">
|
||||
<FaqSplitMedia
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "step1",
|
||||
title: "1. Call or Stop By",
|
||||
content: "Reach out to our team to discuss your current project needs.",
|
||||
},
|
||||
{
|
||||
id: "step2",
|
||||
title: "2. Tell Us What You Need",
|
||||
content: "Our experts identify the right part or system for your requirements.",
|
||||
},
|
||||
{
|
||||
id: "step3",
|
||||
title: "3. Walk Out Ready to Install",
|
||||
content: "Pick up your equipment immediately and complete your install today.",
|
||||
},
|
||||
]}
|
||||
title="Get What You Need in 3 Simple Steps"
|
||||
description="We make the HVAC acquisition process as simple as possible."
|
||||
faqsAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/male-worker-using-machinery-juice-factory_107420-96039.jpg"
|
||||
/>
|
||||
</div>
|
||||
<div id="how-it-works" data-section="how-it-works">
|
||||
<FaqSplitMedia
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{ id: "step1", title: "1. Call or Stop By", content: "Reach out to our team to discuss your current project needs." },
|
||||
{ id: "step2", title: "2. Tell Us What You Need", content: "Our experts identify the right part or system for your requirements." },
|
||||
{ id: "step3", title: "3. Walk Out Ready to Install", content: "Pick up your equipment immediately and complete your install today." }
|
||||
]}
|
||||
title="Get What You Need in 3 Simple Steps"
|
||||
description="We make the HVAC acquisition process as simple as possible."
|
||||
faqsAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/male-worker-using-machinery-juice-factory_107420-96039.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="featured-promise" data-section="featured-promise">
|
||||
<ContactText
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
text="We make HVAC simple — great prices, real inventory, and people who actually help."
|
||||
/>
|
||||
</div>
|
||||
<div id="featured-promise" data-section="featured-promise">
|
||||
<ContactText
|
||||
useInvertedBackground={true}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
text="We make HVAC simple — great prices, real inventory, and people who actually help."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="cta" data-section="cta">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "rotated-rays-static-grid",
|
||||
}}
|
||||
text="Need HVAC Equipment Today? Get the right system at the right price."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now",
|
||||
href: "tel:5550102",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="cta" data-section="cta">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "rotated-rays-static-grid" }}
|
||||
text="Need HVAC Equipment Today? Get the right system at the right price."
|
||||
buttons={[{ text: "Call Now", href: "tel:5550102" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/businessman-prepares-leave-office_482257-120195.jpg"
|
||||
logoText="The HVAC Connection"
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "HVAC Systems",
|
||||
href: "#services",
|
||||
},
|
||||
{
|
||||
label: "Parts Supply",
|
||||
href: "#services",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#cta",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/businessman-prepares-leave-office_482257-120195.jpg"
|
||||
logoText="The HVAC Connection"
|
||||
columns={[
|
||||
{ title: "Services", items: [{ label: "HVAC Systems", href: "#services" }, { label: "Parts Supply", href: "#services" }] },
|
||||
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Contact", href: "#cta" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user