Add src/app/services/water-heater-repair/page.tsx
This commit is contained in:
41
src/app/services/water-heater-repair/page.tsx
Normal file
41
src/app/services/water-heater-repair/page.tsx
Normal file
@@ -0,0 +1,41 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
|
||||
|
||||
export default function WaterHeaterRepairPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Drain Cleaning", id: "/services/drain-cleaning" },
|
||||
{ name: "Water Heater Repair", id: "/services/water-heater-repair" },
|
||||
{ name: "Reviews", id: "/reviews" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="The Plumbing Company"
|
||||
/>
|
||||
<HeroSplitKpi
|
||||
title="Reliable Water Heater Repair & Installation"
|
||||
description="No hot water? Our certified technicians specialize in diagnosing and fixing all types of water heater issues quickly. From routine maintenance to full system replacements."
|
||||
kpis={[{ value: "Same Day", label: "Repair" }, { value: "Full", label: "Installation" }, { value: "Expert", label: "Service" }]}
|
||||
buttons={[{ text: "Call for Service", href: "tel:5178995499" }]}
|
||||
/>
|
||||
<FooterBase
|
||||
columns={[
|
||||
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Services", href: "/services" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||
]}
|
||||
logoText="The Plumbing Company (517) 899-5499"
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user