diff --git a/src/app/page.tsx b/src/app/page.tsx
index 1d08c4e..f270d4f 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -9,6 +9,7 @@ import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonia
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
+import ContactSplit from '@/components/sections/contact/ContactSplit';
import { Award, Clock, ShieldCheck, Star, ThumbsUp, Wrench, Zap } from "lucide-react";
export default function LandingPage() {
@@ -30,21 +31,13 @@ export default function LandingPage() {
@@ -53,108 +46,63 @@ export default function LandingPage() {
@@ -167,20 +115,11 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
- title: "Plumbing Services",
- description: "Quick diagnosis and repairs for all pipe and drainage issues.",
- imageSrc: "http://img.b2bpic.net/free-photo/african-american-employee-talking-landline-phone_482257-96280.jpg?_wi=2",
- },
+ title: "Plumbing Services", description: "Quick diagnosis and repairs for all pipe and drainage issues.", imageSrc: "http://img.b2bpic.net/free-photo/african-american-employee-talking-landline-phone_482257-96280.jpg?_wi=2"},
{
- title: "Electrical Work",
- description: "Preventative maintenance and safe installations for your home.",
- imageSrc: "http://img.b2bpic.net/free-photo/african-american-employee-talking-landline-phone_482257-96280.jpg?_wi=3",
- },
+ title: "Electrical Work", description: "Preventative maintenance and safe installations for your home.", imageSrc: "http://img.b2bpic.net/free-photo/african-american-employee-talking-landline-phone_482257-96280.jpg?_wi=3"},
{
- title: "Emergency Repairs",
- description: "Emergency services available for immediate assistance day or night.",
- imageSrc: "http://img.b2bpic.net/free-photo/african-american-employee-talking-landline-phone_482257-96280.jpg?_wi=4",
- },
+ title: "Emergency Repairs", description: "Emergency services available for immediate assistance day or night.", imageSrc: "http://img.b2bpic.net/free-photo/african-american-employee-talking-landline-phone_482257-96280.jpg?_wi=4"},
]}
title="Our Professional Services"
description="Comprehensive local services handled by our licensed expert team with speed and reliability."
@@ -196,27 +135,31 @@ export default function LandingPage() {
description="We are proud of the work we have accomplished in our community."
metrics={[
{
- id: "ex1",
- icon: Wrench,
- title: "Projects Completed",
- value: "1200+",
- },
+ id: "ex1", icon: Wrench,
+ title: "Projects Completed", value: "1200+"},
{
- id: "ex2",
- icon: ThumbsUp,
- title: "Happy Clients",
- value: "99%",
- },
+ id: "ex2", icon: ThumbsUp,
+ title: "Happy Clients", value: "99%"},
{
- id: "ex3",
- icon: Award,
- title: "Years Experience",
- value: "20+",
- },
+ id: "ex3", icon: Award,
+ title: "Years Experience", value: "20+"},
]}
/>
+
+
+
+
@@ -246,11 +183,7 @@ export default function LandingPage() {
title="Trusted by Local Leaders"
description="We are the preferred service provider for top local businesses."
names={[
- "City Real Estate",
- "Metro Property Management",
- "Downtown Business Association",
- "Home Maintenance Collective",
- ]}
+ "City Real Estate", "Metro Property Management", "Downtown Business Association", "Home Maintenance Collective"]}
/>
diff --git a/src/app/services/electrical/page.tsx b/src/app/services/electrical/page.tsx
new file mode 100644
index 0000000..9f58e06
--- /dev/null
+++ b/src/app/services/electrical/page.tsx
@@ -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 (
+
+
+
+
Electrical Work
+
Certified electrical services including light installations, panel upgrades, and safety inspections.
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/services/emergency/page.tsx b/src/app/services/emergency/page.tsx
new file mode 100644
index 0000000..e5aa583
--- /dev/null
+++ b/src/app/services/emergency/page.tsx
@@ -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 (
+
+
+
+
Emergency Repairs
+
24/7 emergency response for critical home service issues when you need us most.
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/services/plumbing/page.tsx b/src/app/services/plumbing/page.tsx
new file mode 100644
index 0000000..972d2a5
--- /dev/null
+++ b/src/app/services/plumbing/page.tsx
@@ -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 PlumbingPage() {
+ return (
+
+
+
+
Plumbing Services
+
Professional plumbing solutions for your residential needs, including leak repairs, pipe installation, and drain clearing.
+
+
+
+
+ );
+}
\ No newline at end of file