Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9b70308903 | |||
| 21f5e741e1 |
@@ -13,10 +13,10 @@ export default function HomePage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "About Us", id: "/about" },
|
||||
{ name: "Reviews", id: "/reviews" },
|
||||
{ name: "Service Area", id: "/service-area" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
{ name: "About Us", id: "#about-overview" },
|
||||
{ name: "Reviews", id: "#testimonials-home" },
|
||||
{ name: "Service Area", id: "/" },
|
||||
{ name: "Contact", id: "#contact-home" }
|
||||
];
|
||||
|
||||
return (
|
||||
@@ -34,26 +34,26 @@ export default function HomePage() {
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
brandName={"Unlimited Plumbing & Heating"}
|
||||
brandName={"Hems Mechanical Heating and Air Conditioning"}
|
||||
navItems={navItems}
|
||||
button={{ text: "Call Now", href: "tel:+14037717480" }}
|
||||
button={{ text: "Call Now", href: "tel:+14033343027" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroOverlayTestimonial
|
||||
title={"Your Trusted 24/7 Plumbing & Heating Experts in Chestermere"}
|
||||
description={"Dedicated to rapid response and lasting solutions for every home. Rated 5.0 Stars with 22+ verified reviews."}
|
||||
title={"Your Trusted Heating and Air Conditioning Experts in Drumheller"}
|
||||
description={"Dedicated to rapid response and lasting solutions for every home. Rated 5.0 Stars with 17+ verified reviews."}
|
||||
buttons={[
|
||||
{ text: "Get Emergency Service", href: "tel:+14037717480" },
|
||||
{ text: "Request a Quote", href: "/contact" }
|
||||
{ text: "Get Service Now", href: "tel:+14033343027" },
|
||||
{ text: "Request a Quote", href: "#contact-home" }
|
||||
]}
|
||||
testimonials={[
|
||||
{ name: "Sarah J.", handle: "@sarahj", testimonial: "Unlimited P&H saved our weekend! Fast, friendly, and fixed the issue perfectly. Highly recommend their emergency service.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-man-home-office_329181-20664.jpg?_wi=1", imageAlt: "Sarah J. customer review" },
|
||||
{ name: "Sarah J.", handle: "@sarahj", testimonial: "Hems Mechanical saved our weekend! Fast, friendly, and fixed the issue perfectly. Highly recommend their service.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-man-home-office_329181-20664.jpg?_wi=1", imageAlt: "Sarah J. customer review" },
|
||||
{ name: "Michael C.", handle: "@michaelc", testimonial: "Reliable and professional for our commercial property. Their team is knowledgeable and always gets the job done right.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/man-talking-phone-kitchen_23-2148254569.jpg?_wi=1", imageAlt: "Michael C. customer review" },
|
||||
{ name: "Emily R.", handle: "@emilyr", testimonial: "Fantastic furnace installation! Efficient, clean, and great value. Our home has never been cozier.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/side-view-family-celebrating-birthday-together_23-2150598986.jpg?_wi=1", imageAlt: "Emily R. customer review" },
|
||||
{ name: "David K.", handle: "@davidk", testimonial: "Called them for a leaky faucet, and they were quick to respond. Very impressed with the quality of work and customer service.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/woman-using-smart-speaker-medium-shot_23-2149936227.jpg?_wi=1", imageAlt: "David K. customer review" },
|
||||
{ name: "Jessica L.", handle: "@jessical", testimonial: "First-time homeowner plumbing issue – they made it stress-free! Explained everything clearly and fixed it efficiently.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-worker-holding-hand-chest-uniform-looking-grateful_176474-35950.jpg?_wi=1", imageAlt: "Jessica L. customer review" }
|
||||
{ name: "Emily R.", handle: "@emilyr", testimonial: "Fantastic heating system installation! Efficient, clean, and great value. Our home has never been cozier.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/side-view-family-celebrating-birthday-together_23-2150598986.jpg?_wi=1", imageAlt: "Emily R. customer review" },
|
||||
{ name: "David K.", handle: "@davidk", testimonial: "Called them for AC repair, and they were quick to respond. Very impressed with the quality of work and customer service.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/woman-using-smart-speaker-medium-shot_23-2149936227.jpg?_wi=1", imageAlt: "David K. customer review" },
|
||||
{ name: "Jessica L.", handle: "@jessical", testimonial: "First-time homeowner HVAC issue – they made it stress-free! Explained everything clearly and fixed it efficiently.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-worker-holding-hand-chest-uniform-looking-grateful_176474-35950.jpg?_wi=1", imageAlt: "Jessica L. customer review" }
|
||||
]}
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/young-builder-man-construction-uniform-safety-helmet-smiling-cheerfully-sticking-out-tongue_141793-28640.jpg", alt: "Customer 1" },
|
||||
@@ -62,7 +62,7 @@ export default function HomePage() {
|
||||
{ src: "http://img.b2bpic.net/free-photo/senior-businessman-outside-modern-office-building_1139-1076.jpg", alt: "Customer 4" }
|
||||
]}
|
||||
imageSrc={"http://img.b2bpic.net/free-photo/high-angle-man-working-as-plumber_23-2150746302.jpg"}
|
||||
imageAlt={"Plumber working on a pipe in a modern home"}
|
||||
imageAlt={"HVAC technician working on a system"}
|
||||
showBlur={true}
|
||||
textPosition={"bottom"}
|
||||
/>
|
||||
@@ -70,29 +70,29 @@ export default function HomePage() {
|
||||
|
||||
<div id="about-overview" data-section="about-overview">
|
||||
<MetricSplitMediaAbout
|
||||
title={"Unlimited Reliability, Unmatched Service"}
|
||||
description={"At Unlimited Plumbing & Heating, we're your local Chestermere specialists. With a commitment to honest work, fair pricing, and 24/7 availability, we've built a reputation for excellence and reliability. Trust us for all your plumbing and heating needs, backed by a perfect 5.0-star Google rating."}
|
||||
title={"Hems Mechanical Heating and Air Conditioning: Your Local Drumheller Experts"}
|
||||
description={"At Hems Mechanical Heating and Air Conditioning, we're your local Drumheller specialists. With a commitment to honest work, fair pricing, and reliable service, we've built a reputation for excellence. Trust us for all your heating and AC needs, backed by a perfect 5.0-star rating from 17 reviews."}
|
||||
metrics={[
|
||||
{ value: "5.0", title: "Google Rating" },
|
||||
{ value: "22+", title: "Satisfied Reviews" },
|
||||
{ value: "24/7", title: "Emergency Service" },
|
||||
{ value: "17+", title: "Satisfied Reviews" },
|
||||
{ value: "8 AM", title: "Open Daily" },
|
||||
{ value: "10+", title: "Years of Expertise" }
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
imageSrc={"http://img.b2bpic.net/free-photo/workman-with-scissors-mower-white-background_1368-5727.jpg"}
|
||||
imageAlt={"Unlimited Plumbing & Heating team group photo"}
|
||||
imageSrc={"http://img.b2bpic.net/free-photo/portrait-young-technician-standing-with-crossed-arms_23-2147690623.jpg"}
|
||||
imageAlt={"Hems Mechanical technician"}
|
||||
mediaAnimation={"slide-up"}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services-overview" data-section="services-overview">
|
||||
<FeatureCardSeven
|
||||
title={"Comprehensive Plumbing & Heating Solutions"}
|
||||
description={"From emergency repairs to full system installations, our certified technicians deliver expert service across Chestermere and surrounding areas."}
|
||||
title={"Comprehensive Heating and Air Conditioning Services"}
|
||||
description={"From emergency repairs to full system installations, our certified technicians deliver expert HVAC service across Drumheller and surrounding areas."}
|
||||
features={[
|
||||
{ title: "Expert Plumbing Services", description: "Faucet, leak, pipe, shower, and toilet repair & installation, plus thorough drain cleaning for clear pipes every time.", imageSrc: "http://img.b2bpic.net/free-photo/man-rinsing-dish-sponge-running-water-daily-home-hygiene_169016-69431.jpg", imageAlt: "Plumbing services illustration" },
|
||||
{ title: "Reliable Water Heating", description: "Professional installation and repair of water heaters and water tanks, ensuring you always have hot water when you need it.", imageSrc: "http://img.b2bpic.net/free-photo/male-jeweler-working-shop_23-2150914162.jpg", imageAlt: "Water heating services illustration" },
|
||||
{ title: "Complete HVAC Solutions", description: "From emergency furnace repair to new furnace installation, we keep your home warm and comfortable through Alberta's winters.", imageSrc: "http://img.b2bpic.net/free-photo/man-putting-raw-salmon-steak-into-oven_53876-24741.jpg", imageAlt: "HVAC services illustration" }
|
||||
{ title: "Heating System Installation", description: "Expert installation of new heating systems to keep your home warm and efficient.", imageSrc: "http://img.b2bpic.net/free-photo/young-man-looking-into-solid-fuel-boiler-working-with-biofuels-economical-heating_169016-14805.jpg", imageAlt: "Heating system installation" },
|
||||
{ title: "Heating System Repair", description: "Rapid diagnosis and repair for all types of heating system malfunctions, ensuring your comfort.", imageSrc: "http://img.b2bpic.net/free-photo/cropped-shot-plumber-checking-boiler-with-thermostat_23-2147983610.jpg?_wi=1", imageAlt: "Heating system repair" },
|
||||
{ title: "AC Installation", description: "Professional installation of new air conditioning units for optimal cooling performance and energy efficiency.", imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-ventilation-system_23-2149281314.jpg", imageAlt: "AC installation" }
|
||||
]}
|
||||
animationType={"slide-up"}
|
||||
textboxLayout={"default"}
|
||||
@@ -102,19 +102,19 @@ export default function HomePage() {
|
||||
|
||||
<div id="testimonials-home" data-section="testimonials-home">
|
||||
<TestimonialCardSixteen
|
||||
title={"What Our Chestermere Clients Say"}
|
||||
description={"Our perfect 5.0-star rating isn't just a number – it's a reflection of our dedication to customer satisfaction and quality workmanship. Hear directly from your neighbors."}
|
||||
title={"What Our Drumheller Clients Say"}
|
||||
description={"Our perfect 5.0-star rating with 17+ reviews isn't just a number – it's a reflection of our dedication to customer satisfaction and quality workmanship. Hear directly from your neighbors."}
|
||||
kpiItems={[
|
||||
{ value: "5.0", label: "Average Rating" },
|
||||
{ value: "22+", label: "Google Reviews" },
|
||||
{ value: "24/7", label: "Emergency Ready" }
|
||||
{ value: "17+", label: "Google Reviews" },
|
||||
{ value: "8 AM", label: "Open Daily" }
|
||||
]}
|
||||
testimonials={[
|
||||
{ id: "1", name: "Sarah J.", role: "Homeowner", company: "Chestermere", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-man-home-office_329181-20664.jpg?_wi=2", imageAlt: "Sarah J. customer review" },
|
||||
{ id: "2", name: "Michael C.", role: "Property Manager", company: "Calgary", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/man-talking-phone-kitchen_23-2148254569.jpg?_wi=2", imageAlt: "Michael C. customer review" },
|
||||
{ id: "3", name: "Emily R.", role: "Resident", company: "Langdon", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/side-view-family-celebrating-birthday-together_23-2150598986.jpg?_wi=2", imageAlt: "Emily R. customer review" },
|
||||
{ id: "4", name: "David K.", role: "Small Business Owner", company: "Strathmore", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/woman-using-smart-speaker-medium-shot_23-2149936227.jpg?_wi=2", imageAlt: "David K. customer review" },
|
||||
{ id: "5", name: "Jessica L.", role: "Homeowner", company: "Chestermere", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-worker-holding-hand-chest-uniform-looking-grateful_176474-35950.jpg?_wi=2", imageAlt: "Jessica L. customer review" }
|
||||
{ id: "1", name: "Sarah J.", role: "Homeowner", company: "Drumheller", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-man-home-office_329181-20664.jpg?_wi=2", imageAlt: "Sarah J. customer review" },
|
||||
{ id: "2", name: "Michael C.", role: "Property Manager", company: "Drumheller", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/man-talking-phone-kitchen_23-2148254569.jpg?_wi=2", imageAlt: "Michael C. customer review" },
|
||||
{ id: "3", name: "Emily R.", role: "Resident", company: "Drumheller", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/side-view-family-celebrating-birthday-together_23-2150598986.jpg?_wi=2", imageAlt: "Emily R. customer review" },
|
||||
{ id: "4", name: "David K.", role: "Small Business Owner", company: "Drumheller", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/woman-using-smart-speaker-medium-shot_23-2149936227.jpg?_wi=2", imageAlt: "David K. customer review" },
|
||||
{ id: "5", name: "Jessica L.", role: "Homeowner", company: "Drumheller", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-worker-holding-hand-chest-uniform-looking-grateful_176474-35950.jpg?_wi=2", imageAlt: "Jessica L. customer review" }
|
||||
]}
|
||||
animationType={"depth-3d"}
|
||||
textboxLayout={"default"}
|
||||
@@ -124,9 +124,9 @@ export default function HomePage() {
|
||||
|
||||
<div id="contact-home" data-section="contact-home">
|
||||
<ContactCenter
|
||||
tag={"URGENT SERVICE"}
|
||||
title={"Need Expert Service Now? We're Available 24/7."}
|
||||
description={"Don't let plumbing or heating issues disrupt your comfort. Fill out the form below or call us directly at (403) 771-7480 for immediate assistance."}
|
||||
tag={"HVAC SERVICES"}
|
||||
title={"Need Expert HVAC Service Now? We're Available Early."}
|
||||
description={"Don't let heating or AC issues disrupt your comfort. Fill out the form below or call us directly at (403) 334-3027 for immediate assistance. We open at 8 a.m."}
|
||||
inputPlaceholder={"Your Name"}
|
||||
buttonText={"Request Service"}
|
||||
background={{ variant: "downward-rays-static" }}
|
||||
@@ -137,14 +137,14 @@ export default function HomePage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText={"Unlimited Plumbing & Heating"}
|
||||
logoText={"Hems Mechanical Heating and Air Conditioning"}
|
||||
columns={[
|
||||
{ title: "Services", items: [{ label: "Plumbing", href: "/services" }, { label: "Water Heating", href: "/services" }, { label: "HVAC", href: "/services" }, { label: "Drain Cleaning", href: "/services" }] },
|
||||
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Reviews", href: "/reviews" }, { label: "Service Areas", href: "/service-area" }, { label: "Contact", href: "/contact" }] },
|
||||
{ title: "Contact Info", items: [{ label: "Call Us: (403) 771-7480", href: "tel:+14037717480" }, { label: "177 Aspenmere Way", href: "https://www.google.com/maps/search/177+Aspenmere+Way,+Chestermere,+AB+T1X+0W8" }, { label: "Chestermere, AB T1X 0W8", href: "https://www.google.com/maps/search/177+Aspenmere+Way,+Chestermere,+AB+T1X+0W8" }, { label: "Open 24 Hours", href: "#" }]
|
||||
{ title: "Services", items: [{ label: "Heating System Installation", href: "/services" }, { label: "Heating System Repair", href: "/services" }, { label: "AC Installation", href: "/services" }] },
|
||||
{ title: "Company", items: [{ label: "About Us", href: "#about-overview" }, { label: "Reviews", href: "#testimonials-home" }, { label: "Contact", href: "#contact-home" }] },
|
||||
{ title: "Contact Info", items: [{ label: "Call Us: (403) 334-3027", href: "tel:+14033343027" }, { label: "Drumheller, AB", href: "#" }, { label: "Open Mon - Fri, 8 AM - 5 PM", href: "#" }]
|
||||
}
|
||||
]}
|
||||
copyrightText={"© 2026 Unlimited Plumbing & Heating Ltd. All rights reserved."}
|
||||
copyrightText={"© 2026 Hems Mechanical Heating and Air Conditioning. All rights reserved."}
|
||||
onPrivacyClick={() => alert('Privacy Policy coming soon')}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user