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

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

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 EmergencyPage() {
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">Emergency Repairs</h1>
<p className="text-xl text-gray-600">24/7 emergency response for critical home service issues when you need us most.</p>
</div>
<ContactCTA tag="Get Help" title="Urgent Situation?" description="Call us immediately for emergency assistance." buttons={[{text: "Call Now", href: "tel:5551234567"}]} />
<FooterCard logoText="LocalPro" />
</ThemeProvider>
);
}