Merge version_1 into main #1
@@ -6,107 +6,53 @@ import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Service Area",
|
||||
id: "/service-area",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="First Choice AC & Heating"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
useInvertedBackground={false}
|
||||
title="Our History"
|
||||
description="Founded in 2004, we have grown from a small operation to a leading local HVAC provider."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-colleagues-working-together-cafe_273609-13306.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "AC Repair",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Heating Repair",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Installation",
|
||||
href: "/services",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Areas",
|
||||
items: [
|
||||
{
|
||||
label: "Indian Trail",
|
||||
href: "/service-area",
|
||||
},
|
||||
{
|
||||
label: "Monroe",
|
||||
href: "/service-area",
|
||||
},
|
||||
{
|
||||
label: "Waxhaw",
|
||||
href: "/service-area",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "(704) 292-7834",
|
||||
href: "tel:7042927834",
|
||||
},
|
||||
{
|
||||
label: "24/7 Support",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2024 First Choice AC & Heating."
|
||||
bottomRightText="Serving Union County since 2004."
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Service Area", id: "/service-area" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
brandName="First Choice AC & Heating"
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
useInvertedBackground={false}
|
||||
title="Our History"
|
||||
description="Founded in 2004, we have grown from a small operation to a leading local HVAC provider."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-colleagues-working-together-cafe_273609-13306.jpg"
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "Services", items: [{ label: "AC Repair", href: "/services" }, { label: "Heating Repair", href: "/services" }, { label: "Installation", href: "/services" }] },
|
||||
{ title: "Areas", items: [{ label: "Indian Trail", href: "/service-area" }, { label: "Monroe", href: "/service-area" }, { label: "Waxhaw", href: "/service-area" }] },
|
||||
{ title: "Contact", items: [{ label: "(704) 292-7834", href: "tel:7042927834" }, { label: "24/7 Support", href: "#" }] }
|
||||
]}
|
||||
bottomLeftText="© 2024 First Choice AC & Heating."
|
||||
bottomRightText="Serving Union County since 2004."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -6,116 +6,55 @@ import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Service Area",
|
||||
id: "/service-area",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="First Choice AC & Heating"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
tag="Get in Touch"
|
||||
title="Schedule a Visit"
|
||||
description="Let's diagnose your system issue and get you back to comfort."
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "AC Repair",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Heating Repair",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Installation",
|
||||
href: "/services",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Areas",
|
||||
items: [
|
||||
{
|
||||
label: "Indian Trail",
|
||||
href: "/service-area",
|
||||
},
|
||||
{
|
||||
label: "Monroe",
|
||||
href: "/service-area",
|
||||
},
|
||||
{
|
||||
label: "Waxhaw",
|
||||
href: "/service-area",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "(704) 292-7834",
|
||||
href: "tel:7042927834",
|
||||
},
|
||||
{
|
||||
label: "24/7 Support",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2024 First Choice AC & Heating."
|
||||
bottomRightText="Serving Union County since 2004."
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Service Area", id: "/service-area" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
brandName="First Choice AC & Heating"
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Get in Touch"
|
||||
title="Schedule a Visit"
|
||||
description="Let's diagnose your system issue and get you back to comfort."
|
||||
buttons={[{ text: "Contact Us", href: "/contact" }]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "Services", items: [{ label: "AC Repair", href: "/services" }, { label: "Heating Repair", href: "/services" }, { label: "Installation", href: "/services" }] },
|
||||
{ title: "Areas", items: [{ label: "Indian Trail", href: "/service-area" }, { label: "Monroe", href: "/service-area" }, { label: "Waxhaw", href: "/service-area" }] },
|
||||
{ title: "Contact", items: [{ label: "(704) 292-7834", href: "tel:7042927834" }, { label: "24/7 Support", href: "#" }] }
|
||||
]}
|
||||
bottomLeftText="© 2024 First Choice AC & Heating."
|
||||
bottomRightText="Serving Union County since 2004."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
350
src/app/page.tsx
350
src/app/page.tsx
@@ -13,259 +13,107 @@ import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCar
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Service Area",
|
||||
id: "/service-area",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="First Choice AC & Heating"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardGallery
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
title="Reliable Heating & Air Conditioning in Indian Trail, NC"
|
||||
description="Over 20 years of experience serving Union County with honest, fast, and professional HVAC solutions."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now",
|
||||
href: "tel:7042927834",
|
||||
},
|
||||
{
|
||||
text: "Request Service",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-calibrating-pressure-device_482257-92757.jpg",
|
||||
imageAlt: "HVAC Technician",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-minimal-background-with-floor_23-2149207724.jpg",
|
||||
imageAlt: "Service Van",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-observer_1098-14823.jpg",
|
||||
imageAlt: "Professional HVAC Team",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/learning-map_1098-14838.jpg",
|
||||
imageAlt: "Learning map",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-professional-engineer-standing-front-fixed-air-conditioner-proud-work-done-skilled-technician-contracted-by-customer-happy-with-smooth-maintenance-hvac-system-components_482257-70160.jpg",
|
||||
imageAlt: "Technician with fixed AC",
|
||||
},
|
||||
]}
|
||||
mediaAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardTwentyNine
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "AC Repair",
|
||||
description: "Fast, reliable repair to keep your home cool during hot NC summers.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/ventilation-system-abstract-concept-vector-illustration-mechanical-ventilation-airing-cooling-system-maintenance-exhaust-fan-new-air-flow-exchange-improve-air-quality-abstract-metaphor_335657-5754.jpg",
|
||||
titleImageSrc: "http://img.b2bpic.net/free-vector/automotive-logo-template_23-2150529631.jpg",
|
||||
buttonText: "Learn More",
|
||||
buttonHref: "/services",
|
||||
},
|
||||
{
|
||||
title: "Heating Repair",
|
||||
description: "Expert furnace and heating repair for total comfort throughout winter.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-hvac-logo-template_23-2149194730.jpg",
|
||||
titleImageSrc: "http://img.b2bpic.net/free-vector/plumbing-flat-icons-collection_1284-10976.jpg",
|
||||
buttonText: "Learn More",
|
||||
buttonHref: "/services",
|
||||
},
|
||||
{
|
||||
title: "System Installation",
|
||||
description: "Professional installation of high-efficiency heating and cooling units.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/heating-icons-set_1284-10669.jpg",
|
||||
titleImageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-ventilation-system_23-2149281306.jpg",
|
||||
buttonText: "Learn More",
|
||||
buttonHref: "/services",
|
||||
},
|
||||
]}
|
||||
title="Core HVAC Services"
|
||||
description="Professional solutions for all your home comfort needs."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
useInvertedBackground={false}
|
||||
title="Your Trusted Family-Owned HVAC Team"
|
||||
description="With over 20 years of local service, First Choice AC & Heating is dedicated to serving Indian Trail and surrounding Union County communities with honesty and integrity."
|
||||
buttons={[
|
||||
{
|
||||
text: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/female-male-workers-wearing-work-clothes_273609-11129.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTen
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Great Service",
|
||||
quote: "First Choice provided fast, professional AC repair when we needed it most.",
|
||||
name: "Sarah J.",
|
||||
role: "Homeowner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/attractive-blonde-female-relaxing-couch-room-with-books-stands_613910-95.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Trusted Local Team",
|
||||
quote: "Reliable and honest experts who know what they are doing. Highly recommend.",
|
||||
name: "Michael C.",
|
||||
role: "Homeowner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-sitting-table-side-view_23-2149720808.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Best Price",
|
||||
quote: "Fair pricing and excellent communication. They installed our new system perfectly.",
|
||||
name: "Emily R.",
|
||||
role: "Homeowner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-happiness-from-new-apartment_329181-9761.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "Reliable",
|
||||
quote: "Professional team that treats you like family. They are our go-to HVAC service.",
|
||||
name: "David K.",
|
||||
role: "Homeowner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-man-with-arms-crossed-looking-camera_23-2148306655.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
title: "Quick Response",
|
||||
quote: "Same-day service when our heat went out. Fast and efficient.",
|
||||
name: "Jennifer L.",
|
||||
role: "Homeowner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-young-musician-woman-learns-how-play-ukulele-sits-sofa-with-crossed-legs_1258-204931.jpg",
|
||||
},
|
||||
]}
|
||||
title="Customer Reviews"
|
||||
description="See why local homeowners trust us for their HVAC needs."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
tag="Contact Us"
|
||||
title="Need Heating or AC Service?"
|
||||
description="Call us at (704) 292-7834 for 24/7 service or request an appointment below."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call (704) 292-7834",
|
||||
href: "tel:7042927834",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "AC Repair",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Heating Repair",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Installation",
|
||||
href: "/services",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Areas",
|
||||
items: [
|
||||
{
|
||||
label: "Indian Trail",
|
||||
href: "/service-area",
|
||||
},
|
||||
{
|
||||
label: "Monroe",
|
||||
href: "/service-area",
|
||||
},
|
||||
{
|
||||
label: "Waxhaw",
|
||||
href: "/service-area",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "(704) 292-7834",
|
||||
href: "tel:7042927834",
|
||||
},
|
||||
{
|
||||
label: "24/7 Support",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2024 First Choice AC & Heating."
|
||||
bottomRightText="Serving Union County since 2004."
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Service Area", id: "/service-area" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
brandName="First Choice AC & Heating"
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardGallery
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Reliable Heating & Air Conditioning in Indian Trail, NC"
|
||||
description="Over 20 years of experience serving Union County with honest, fast, and professional HVAC solutions."
|
||||
buttons={[{ text: "Call Now", href: "tel:7042927834" }, { text: "Request Service", href: "#contact" }]}
|
||||
mediaItems={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/mechanic-calibrating-pressure-device_482257-92757.jpg", imageAlt: "HVAC Technician" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/abstract-minimal-background-with-floor_23-2149207724.jpg", imageAlt: "Service Van" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/young-observer_1098-14823.jpg", imageAlt: "Professional HVAC Team" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/learning-map_1098-14838.jpg", imageAlt: "Learning map" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/portrait-professional-engineer-standing-front-fixed-air-conditioner-proud-work-done-skilled-technician-contracted-by-customer-happy-with-smooth-maintenance-hvac-system-components_482257-70160.jpg", imageAlt: "Technician with fixed AC" }
|
||||
]}
|
||||
mediaAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardTwentyNine
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ title: "AC Repair", description: "Fast, reliable repair to keep your home cool during hot NC summers.", imageSrc: "http://img.b2bpic.net/free-vector/ventilation-system-abstract-concept-vector-illustration-mechanical-ventilation-airing-cooling-system-maintenance-exhaust-fan-new-air-flow-exchange-improve-air-quality-abstract-metaphor_335657-5754.jpg", titleImageSrc: "http://img.b2bpic.net/free-vector/automotive-logo-template_23-2150529631.jpg", buttonText: "Learn More", buttonHref: "/services" },
|
||||
{ title: "Heating Repair", description: "Expert furnace and heating repair for total comfort throughout winter.", imageSrc: "http://img.b2bpic.net/free-vector/flat-design-hvac-logo-template_23-2149194730.jpg", titleImageSrc: "http://img.b2bpic.net/free-vector/plumbing-flat-icons-collection_1284-10976.jpg", buttonText: "Learn More", buttonHref: "/services" },
|
||||
{ title: "System Installation", description: "Professional installation of high-efficiency heating and cooling units.", imageSrc: "http://img.b2bpic.net/free-vector/heating-icons-set_1284-10669.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-ventilation-system_23-2149281306.jpg", buttonText: "Learn More", buttonHref: "/services" }
|
||||
]}
|
||||
title="Core HVAC Services"
|
||||
description="Professional solutions for all your home comfort needs."
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
useInvertedBackground={false}
|
||||
title="Your Trusted Family-Owned HVAC Team"
|
||||
description="With over 20 years of local service, First Choice AC & Heating is dedicated to serving Indian Trail and surrounding Union County communities with honesty and integrity."
|
||||
buttons={[{ text: "About Us", href: "/about" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/female-male-workers-wearing-work-clothes_273609-11129.jpg"
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTen
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "1", title: "Great Service", quote: "First Choice provided fast, professional AC repair when we needed it most.", name: "Sarah J.", role: "Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/attractive-blonde-female-relaxing-couch-room-with-books-stands_613910-95.jpg" },
|
||||
{ id: "2", title: "Trusted Local Team", quote: "Reliable and honest experts who know what they are doing. Highly recommend.", name: "Michael C.", role: "Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/friends-sitting-table-side-view_23-2149720808.jpg" },
|
||||
{ id: "3", title: "Best Price", quote: "Fair pricing and excellent communication. They installed our new system perfectly.", name: "Emily R.", role: "Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/full-happiness-from-new-apartment_329181-9761.jpg" },
|
||||
{ id: "4", title: "Reliable", quote: "Professional team that treats you like family. They are our go-to HVAC service.", name: "David K.", role: "Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/smiley-man-with-arms-crossed-looking-camera_23-2148306655.jpg" },
|
||||
{ id: "5", title: "Quick Response", quote: "Same-day service when our heat went out. Fast and efficient.", name: "Jennifer L.", role: "Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-young-musician-woman-learns-how-play-ukulele-sits-sofa-with-crossed-legs_1258-204931.jpg" }
|
||||
]}
|
||||
title="Customer Reviews"
|
||||
description="See why local homeowners trust us for their HVAC needs."
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Contact Us"
|
||||
title="Need Heating or AC Service?"
|
||||
description="Call us at (704) 292-7834 for 24/7 service or request an appointment below."
|
||||
buttons={[{ text: "Call (704) 292-7834", href: "tel:7042927834" }]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "Services", items: [{ label: "AC Repair", href: "/services" }, { label: "Heating Repair", href: "/services" }, { label: "Installation", href: "/services" }] },
|
||||
{ title: "Areas", items: [{ label: "Indian Trail", href: "/service-area" }, { label: "Monroe", href: "/service-area" }, { label: "Waxhaw", href: "/service-area" }] },
|
||||
{ title: "Contact", items: [{ label: "(704) 292-7834", href: "tel:7042927834" }, { label: "24/7 Support", href: "#" }] }
|
||||
]}
|
||||
bottomLeftText="© 2024 First Choice AC & Heating."
|
||||
bottomRightText="Serving Union County since 2004."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -6,107 +6,53 @@ import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ServiceAreaPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Service Area",
|
||||
id: "/service-area",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="First Choice AC & Heating"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
useInvertedBackground={false}
|
||||
title="Service Areas"
|
||||
description="Proudly serving Indian Trail, Monroe, and the entire Union County area."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-abandoned-house-with-fence_23-2149454799.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "AC Repair",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Heating Repair",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Installation",
|
||||
href: "/services",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Areas",
|
||||
items: [
|
||||
{
|
||||
label: "Indian Trail",
|
||||
href: "/service-area",
|
||||
},
|
||||
{
|
||||
label: "Monroe",
|
||||
href: "/service-area",
|
||||
},
|
||||
{
|
||||
label: "Waxhaw",
|
||||
href: "/service-area",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "(704) 292-7834",
|
||||
href: "tel:7042927834",
|
||||
},
|
||||
{
|
||||
label: "24/7 Support",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2024 First Choice AC & Heating."
|
||||
bottomRightText="Serving Union County since 2004."
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Service Area", id: "/service-area" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
brandName="First Choice AC & Heating"
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
useInvertedBackground={false}
|
||||
title="Service Areas"
|
||||
description="Proudly serving Indian Trail, Monroe, and the entire Union County area."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-abandoned-house-with-fence_23-2149454799.jpg"
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "Services", items: [{ label: "AC Repair", href: "/services" }, { label: "Heating Repair", href: "/services" }, { label: "Installation", href: "/services" }] },
|
||||
{ title: "Areas", items: [{ label: "Indian Trail", href: "/service-area" }, { label: "Monroe", href: "/service-area" }, { label: "Waxhaw", href: "/service-area" }] },
|
||||
{ title: "Contact", items: [{ label: "(704) 292-7834", href: "tel:7042927834" }, { label: "24/7 Support", href: "#" }] }
|
||||
]}
|
||||
bottomLeftText="© 2024 First Choice AC & Heating."
|
||||
bottomRightText="Serving Union County since 2004."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -6,127 +6,59 @@ import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwen
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ServicesPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Service Area",
|
||||
id: "/service-area",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="First Choice AC & Heating"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardTwentyNine
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="Heating Solutions"
|
||||
description="Everything from furnace repairs to complete system replacements."
|
||||
features={[
|
||||
{
|
||||
title: "Furnace Repair",
|
||||
description: "Keeping you warm through the coldest nights.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/construction_24908-54410.jpg",
|
||||
titleImageSrc: "http://img.b2bpic.net/free-vector/creative-hvac-logo-template_23-2149210163.jpg",
|
||||
buttonText: "View",
|
||||
buttonHref: "/services",
|
||||
},
|
||||
{
|
||||
title: "Heat Pumps",
|
||||
description: "Efficient heating and cooling year-round.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-heat-pump-outside-home_23-2149250250.jpg",
|
||||
titleImageSrc: "http://img.b2bpic.net/free-vector/creative-hvac-logo-template_23-2149199412.jpg",
|
||||
buttonText: "View",
|
||||
buttonHref: "/services",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "AC Repair",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Heating Repair",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Installation",
|
||||
href: "/services",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Areas",
|
||||
items: [
|
||||
{
|
||||
label: "Indian Trail",
|
||||
href: "/service-area",
|
||||
},
|
||||
{
|
||||
label: "Monroe",
|
||||
href: "/service-area",
|
||||
},
|
||||
{
|
||||
label: "Waxhaw",
|
||||
href: "/service-area",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "(704) 292-7834",
|
||||
href: "tel:7042927834",
|
||||
},
|
||||
{
|
||||
label: "24/7 Support",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2024 First Choice AC & Heating."
|
||||
bottomRightText="Serving Union County since 2004."
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Service Area", id: "/service-area" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
brandName="First Choice AC & Heating"
|
||||
/>
|
||||
</div>
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardTwentyNine
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="Heating Solutions"
|
||||
description="Everything from furnace repairs to complete system replacements."
|
||||
features={[
|
||||
{ title: "Furnace Repair", description: "Keeping you warm through the coldest nights.", imageSrc: "http://img.b2bpic.net/free-vector/construction_24908-54410.jpg", titleImageSrc: "http://img.b2bpic.net/free-vector/creative-hvac-logo-template_23-2149210163.jpg", buttonText: "View", buttonHref: "/services" },
|
||||
{ title: "Heat Pumps", description: "Efficient heating and cooling year-round.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-heat-pump-outside-home_23-2149250250.jpg", titleImageSrc: "http://img.b2bpic.net/free-vector/creative-hvac-logo-template_23-2149199412.jpg", buttonText: "View", buttonHref: "/services" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "Services", items: [{ label: "AC Repair", href: "/services" }, { label: "Heating Repair", href: "/services" }, { label: "Installation", href: "/services" }] },
|
||||
{ title: "Areas", items: [{ label: "Indian Trail", href: "/service-area" }, { label: "Monroe", href: "/service-area" }, { label: "Waxhaw", href: "/service-area" }] },
|
||||
{ title: "Contact", items: [{ label: "(704) 292-7834", href: "tel:7042927834" }, { label: "24/7 Support", href: "#" }] }
|
||||
]}
|
||||
bottomLeftText="© 2024 First Choice AC & Heating."
|
||||
bottomRightText="Serving Union County since 2004."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user