9 Commits

Author SHA1 Message Date
777cb5b493 Update src/app/page.tsx 2026-03-05 05:24:25 +00:00
307cc743e9 Update src/app/layout.tsx 2026-03-05 05:24:25 +00:00
b7dd327338 Merge version_1 into main
Merge version_1 into main
2026-03-05 05:20:36 +00:00
088a73e867 Merge version_1 into main
Merge version_1 into main
2026-03-05 05:19:58 +00:00
71eb811c24 Merge version_1 into main
Merge version_1 into main
2026-03-05 04:53:27 +00:00
af1609a842 Merge version_1 into main
Merge version_1 into main
2026-03-05 04:52:50 +00:00
2b9d26afea Merge version_1 into main
Merge version_1 into main
2026-03-05 04:41:23 +00:00
9f4ce79839 Merge version_1 into main
Merge version_1 into main
2026-03-05 04:40:23 +00:00
a01f34fbed Merge version_1 into main
Merge version_1 into main
2026-03-05 04:39:00 +00:00
2 changed files with 48 additions and 88 deletions

View File

@@ -1,74 +1,16 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Public_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Fern's HVAC - Winnipeg's Trusted Heating & Air Conditioning Service",
description: "Professional HVAC repair, maintenance, and installation in Winnipeg, MB. 180+ five-star reviews. 24/7 emergency service. Call (204) 255-2233 today.",
keywords: "HVAC Winnipeg, furnace repair, air conditioning, heating service, 24/7 emergency HVAC, Manitoba",
metadataBase: new URL("https://fernshavc.com"),
alternates: {
canonical: "https://fernshavc.com",
},
openGraph: {
title: "Fern's HVAC - Winnipeg Heating & Cooling Experts",
description: "Trusted HVAC services with 180+ reviews. Furnace repair, AC installation, maintenance & 24/7 emergency support.",
url: "https://fernshavc.com",
siteName: "Fern's HVAC",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/coworkers-refill-air-conditioner-freon_482257-90737.jpg",
alt: "Fern's HVAC Professional Service",
},
],
},
twitter: {
card: "summary_large_image",
title: "Fern's HVAC - Winnipeg Heating & Air Conditioning",
description: "Professional HVAC service with 180+ five-star reviews. Available 24/7.",
images: ["http://img.b2bpic.net/free-photo/coworkers-refill-air-conditioner-freon_482257-90737.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Fern's HVAC - Winnipeg Heating & Air Conditioning", description: "Professional HVAC services in Winnipeg with 180+ five-star reviews. Quality workmanship, honest pricing, and 24/7 emergency service."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1436,7 +1378,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel";
import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery";
import SplitAbout from "@/components/sections/about/SplitAbout";
import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen";
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
@@ -45,7 +45,7 @@ export default function HomePage() {
</div>
<div id="hero" data-section="hero">
<HeroBillboardCarousel
<HeroBillboardGallery
title="Winnipeg's Trusted Heating & Air Conditioning Experts"
description="Over 180+ five-star reviews. Quality workmanship, honest pricing, and excellent 24/7 service for heating and cooling repairs, maintenance, and system replacements."
tag="Professional HVAC Service"
@@ -59,11 +59,11 @@ export default function HomePage() {
buttonAnimation="slide-up"
mediaItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/coworkers-refill-air-conditioner-freon_482257-90737.jpg?_wi=1", imageAlt: "HVAC Technician" },
{ imageSrc: "http://img.b2bpic.net/free-photo/coworkers-refill-air-conditioner-freon_482257-90737.jpg?_wi=2", imageAlt: "Furnace Repair Service" },
{ imageSrc: "http://img.b2bpic.net/free-photo/meticulous-wiremen-expertly-refilling-freon-external-air-conditioner-while-using-manifold-measurement-device-closely-measure-pressure-hvac-system-ensuring-perfect-cooling-performance_482257-68069.jpg?_wi=1", imageAlt: "Air Conditioning Installation" },
{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-skillful-technician-commissioned-outside-hvac-system-routine-maintenance-looking-refrigerant-issues-meticulous-mechanic-doing-air-conditioner-inspection-writing-data-tablet_482257-66265.jpg?_wi=1", imageAlt: "HVAC Maintenance" },
{ imageSrc: "http://img.b2bpic.net/free-photo/coworkers-servicing-hvac-system_482257-91024.jpg?_wi=1", imageAlt: "24/7 Emergency Service" },
]}
mediaAnimation="slide-up"
/>
</div>
@@ -101,19 +101,24 @@ export default function HomePage() {
features={[
{
id: 1,
tag: "Heating", title: "Furnace Repair & Installation", subtitle: "Keep your home warm and comfortable", description: "Professional furnace repair, maintenance, and installation services. Our technicians diagnose issues quickly and provide cost-effective solutions to keep your heating system running efficiently.", imageSrc: "http://img.b2bpic.net/free-photo/coworkers-refill-air-conditioner-freon_482257-90737.jpg?_wi=3", imageAlt: "Furnace Repair Service"},
tag: "Heating", title: "Furnace Repair & Installation", subtitle: "Keep your home warm and comfortable", description: "Professional furnace repair, maintenance, and installation services. Our technicians diagnose issues quickly and provide cost-effective solutions to keep your heating system running efficiently.", imageSrc: "http://img.b2bpic.net/free-photo/coworkers-refill-air-conditioner-freon_482257-90737.jpg?_wi=3", imageAlt: "Furnace Repair Service"
},
{
id: 2,
tag: "Cooling", title: "Air Conditioning Repair & Installation", subtitle: "Beat the heat with expert AC service", description: "From repairs to new installations, we ensure your air conditioning system keeps you cool all summer long. Energy-efficient solutions to reduce your utility bills.", imageSrc: "http://img.b2bpic.net/free-photo/meticulous-wiremen-expertly-refilling-freon-external-air-conditioner-while-using-manifold-measurement-device-closely-measure-pressure-hvac-system-ensuring-perfect-cooling-performance_482257-68069.jpg?_wi=2", imageAlt: "Air Conditioning Installation"},
tag: "Cooling", title: "Air Conditioning Repair & Installation", subtitle: "Beat the heat with expert AC service", description: "From repairs to new installations, we ensure your air conditioning system keeps you cool all summer long. Energy-efficient solutions to reduce your utility bills.", imageSrc: "http://img.b2bpic.net/free-photo/meticulous-wiremen-expertly-refilling-freon-external-air-conditioner-while-using-manifold-measurement-device-closely-measure-pressure-hvac-system-ensuring-perfect-cooling-performance_482257-68069.jpg?_wi=2", imageAlt: "Air Conditioning Installation"
},
{
id: 3,
tag: "Maintenance", title: "HVAC Maintenance Plans", subtitle: "Preventive care for year-round comfort", description: "Regular maintenance extends system life and prevents costly repairs. Our maintenance plans include inspections, cleaning, and performance optimization.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-skillful-technician-commissioned-outside-hvac-system-routine-maintenance-looking-refrigerant-issues-meticulous-mechanic-doing-air-conditioner-inspection-writing-data-tablet_482257-66265.jpg?_wi=2", imageAlt: "HVAC Maintenance"},
tag: "Maintenance", title: "HVAC Maintenance Plans", subtitle: "Preventive care for year-round comfort", description: "Regular maintenance extends system life and prevents costly repairs. Our maintenance plans include inspections, cleaning, and performance optimization.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-skillful-technician-commissioned-outside-hvac-system-routine-maintenance-looking-refrigerant-issues-meticulous-mechanic-doing-air-conditioner-inspection-writing-data-tablet_482257-66265.jpg?_wi=2", imageAlt: "HVAC Maintenance"
},
{
id: 4,
tag: "Emergency", title: "24/7 Emergency HVAC Services", subtitle: "Always here when you need us", description: "Heating or cooling system emergency? We're available around the clock to get your system back up and running. Fast response times and reliable solutions.", imageSrc: "http://img.b2bpic.net/free-photo/coworkers-servicing-hvac-system_482257-91024.jpg?_wi=2", imageAlt: "Emergency Service"},
tag: "Emergency", title: "24/7 Emergency HVAC Services", subtitle: "Always here when you need us", description: "Heating or cooling system emergency? We're available around the clock to get your system back up and running. Fast response times and reliable solutions.", imageSrc: "http://img.b2bpic.net/free-photo/coworkers-servicing-hvac-system_482257-91024.jpg?_wi=2", imageAlt: "Emergency Service"
},
{
id: 5,
tag: "Replacement", title: "System Replacements", subtitle: "Modern efficiency for your home", description: "Ready for a new system? We offer high-efficiency furnaces and air conditioners with professional installation and ongoing support.", imageSrc: "http://img.b2bpic.net/free-photo/coworkers-refill-air-conditioner-freon_482257-90737.jpg?_wi=4", imageAlt: "System Replacement"},
tag: "Replacement", title: "System Replacements", subtitle: "Modern efficiency for your home", description: "Ready for a new system? We offer high-efficiency furnaces and air conditioners with professional installation and ongoing support.", imageSrc: "http://img.b2bpic.net/free-photo/coworkers-refill-air-conditioner-freon_482257-90737.jpg?_wi=4", imageAlt: "System Replacement"
},
]}
/>
</div>
@@ -130,17 +135,23 @@ export default function HomePage() {
animationType="slide-up"
testimonials={[
{
id: "1", name: "Robert Thompson", handle: "5.0 ⭐ Verified Review", testimonial: "Fern's HVAC provided exceptional service when our furnace broke down in the middle of winter. Their technicians were professional, prompt, and fixed the issue quickly. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=1", imageAlt: "Robert Thompson"},
id: "1", name: "Robert Thompson", handle: "5.0 ⭐ Verified Review", testimonial: "Fern's HVAC provided exceptional service when our furnace broke down in the middle of winter. Their technicians were professional, prompt, and fixed the issue quickly. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=1", imageAlt: "Robert Thompson"
},
{
id: "2", name: "Sarah Mitchell", handle: "5.0 ⭐ Verified Review", testimonial: "Switched to Fern's for our AC installation and couldn't be happier. Fair pricing, honest advice, and the system is working perfectly. True family business values.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg?_wi=1", imageAlt: "Sarah Mitchell"},
id: "2", name: "Sarah Mitchell", handle: "5.0 ⭐ Verified Review", testimonial: "Switched to Fern's for our AC installation and couldn't be happier. Fair pricing, honest advice, and the system is working perfectly. True family business values.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg?_wi=1", imageAlt: "Sarah Mitchell"
},
{
id: "3", name: "James Henderson", handle: "5.0 ⭐ Verified Review", testimonial: "I've used Fern's HVAC for maintenance for 3 years now. Consistent quality service, knowledgeable technicians, and they always show up on time. Worth every penny.", imageSrc: "http://img.b2bpic.net/free-photo/handsome-business-man-wearing-suit-looking-camera-smiling-broadly-with-happy-face-standing-white-background_141793-54115.jpg", imageAlt: "James Henderson"},
id: "3", name: "James Henderson", handle: "5.0 ⭐ Verified Review", testimonial: "I've used Fern's HVAC for maintenance for 3 years now. Consistent quality service, knowledgeable technicians, and they always show up on time. Worth every penny.", imageSrc: "http://img.b2bpic.net/free-photo/handsome-business-man-wearing-suit-looking-camera-smiling-broadly-with-happy-face-standing-white-background_141793-54115.jpg", imageAlt: "James Henderson"
},
{
id: "4", name: "Jennifer Lopez", handle: "5.0 ⭐ Verified Review", testimonial: "Emergency call at midnight and they answered! Fast service, professional attitude, and solved our heating emergency without breaking the bank. Thank you!", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Jennifer Lopez"},
id: "4", name: "Jennifer Lopez", handle: "5.0 ⭐ Verified Review", testimonial: "Emergency call at midnight and they answered! Fast service, professional attitude, and solved our heating emergency without breaking the bank. Thank you!", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Jennifer Lopez"
},
{
id: "5", name: "David Chen", handle: "5.0 ⭐ Verified Review", testimonial: "Best HVAC service in Winnipeg. Honest pricing, no hidden fees, and their technicians truly care about doing the job right. Recommend to all my friends.", imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=2", imageAlt: "David Chen"},
id: "5", name: "David Chen", handle: "5.0 ⭐ Verified Review", testimonial: "Best HVAC service in Winnipeg. Honest pricing, no hidden fees, and their technicians truly care about doing the job right. Recommend to all my friends.", imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=2", imageAlt: "David Chen"
},
{
id: "6", name: "Maria Santos", handle: "5.0 ⭐ Verified Review", testimonial: "Outstanding customer service from start to finish. They explained everything clearly and stood behind their work. Fern's is my go-to for all HVAC needs.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg?_wi=2", imageAlt: "Maria Santos"},
id: "6", name: "Maria Santos", handle: "5.0 ⭐ Verified Review", testimonial: "Outstanding customer service from start to finish. They explained everything clearly and stood behind their work. Fern's is my go-to for all HVAC needs.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg?_wi=2", imageAlt: "Maria Santos"
},
]}
/>
</div>
@@ -157,21 +168,29 @@ export default function HomePage() {
faqsAnimation="slide-up"
faqs={[
{
id: "1", title: "Do you offer emergency HVAC services?", content: "Yes! We provide 24/7 emergency HVAC services. Call (204) 255-2233 at any time, and our technicians will respond quickly to get your system back up and running."},
id: "1", title: "Do you offer emergency HVAC services?", content: "Yes! We provide 24/7 emergency HVAC services. Call (204) 255-2233 at any time, and our technicians will respond quickly to get your system back up and running."
},
{
id: "2", title: "What areas do you serve?", content: "We service Winnipeg and surrounding areas of Manitoba. Call us to confirm service availability for your specific location."},
id: "2", title: "What areas do you serve?", content: "We service Winnipeg and surrounding areas of Manitoba. Call us to confirm service availability for your specific location."
},
{
id: "3", title: "How often should I have my HVAC system maintained?", content: "We recommend professional HVAC maintenance at least twice per year—once before winter for your furnace and once before summer for your air conditioning system."},
id: "3", title: "How often should I have my HVAC system maintained?", content: "We recommend professional HVAC maintenance at least twice per year—once before winter for your furnace and once before summer for your air conditioning system."
},
{
id: "4", title: "Are your prices competitive?", content: "Absolutely. We believe in honest pricing without hidden fees. We'll provide a clear quote before any work begins, and we're happy to discuss all your options."},
id: "4", title: "Are your prices competitive?", content: "Absolutely. We believe in honest pricing without hidden fees. We'll provide a clear quote before any work begins, and we're happy to discuss all your options."
},
{
id: "5", title: "Do you offer system replacement?", content: "Yes, we specialize in furnace and air conditioning system replacements. We help you choose energy-efficient systems that fit your budget and provide professional installation."},
id: "5", title: "Do you offer system replacement?", content: "Yes, we specialize in furnace and air conditioning system replacements. We help you choose energy-efficient systems that fit your budget and provide professional installation."
},
{
id: "6", title: "What should I do if my furnace stops working?", content: "First, check your thermostat settings and ensure the power is on. If that doesn't help, call us immediately at (204) 255-2233. Our 24/7 emergency service will get a technician to you quickly."},
id: "6", title: "What should I do if my furnace stops working?", content: "First, check your thermostat settings and ensure the power is on. If that doesn't help, call us immediately at (204) 255-2233. Our 24/7 emergency service will get a technician to you quickly."
},
{
id: "7", title: "Do you offer maintenance plans?", content: "Yes, we offer customized maintenance plans to keep your heating and cooling systems running efficiently year-round. Ask us about our maintenance package options."},
id: "7", title: "Do you offer maintenance plans?", content: "Yes, we offer customized maintenance plans to keep your heating and cooling systems running efficiently year-round. Ask us about our maintenance package options."
},
{
id: "8", title: "How can I improve my system's efficiency?", content: "Regular maintenance is key. We also recommend upgrading to high-efficiency systems, proper insulation, and using a programmable thermostat. Our technicians can provide personalized recommendations."},
id: "8", title: "How can I improve my system's efficiency?", content: "Regular maintenance is key. We also recommend upgrading to high-efficiency systems, proper insulation, and using a programmable thermostat. Our technicians can provide personalized recommendations."
},
]}
/>
</div>
@@ -235,4 +254,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}