Add src/app/services/electrical/page.tsx

This commit is contained in:
2026-04-04 01:45:27 +00:00
parent 22efeef50a
commit b2967a5c0c

View File

@@ -0,0 +1,19 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterCard from '@/components/sections/footer/FooterCard';
export default function ElectricalPage() {
return (
<ThemeProvider>
<NavbarStyleApple navItems={[{name: "Home", id: "/"}, {name: "Services", id: "/services"}, {name: "Plumbing", id: "/services/plumbing"}, {name: "Electrical", id: "/services/electrical"}, {name: "Emergency", id: "/services/emergency"}, {name: "About", id: "/about"}, {name: "Contact", id: "/contact"}]} brandName="LocalPro" />
<div className="pt-32 pb-20 px-6 max-w-5xl mx-auto">
<h1 className="text-5xl font-bold mb-6">Electrical Work</h1>
<p className="text-xl text-gray-600">Certified electrical services including light installations, panel upgrades, and safety inspections.</p>
</div>
<ContactCTA tag="Get Help" title="Electrical Issues?" description="Contact us today to schedule your service." buttons={[{text: "Call Now", href: "tel:5551234567"}]} />
<FooterCard logoText="LocalPro" />
</ThemeProvider>
);
}