diff --git a/src/app/residential/page.tsx b/src/app/residential/page.tsx
index 6e2447a..a1df09c 100644
--- a/src/app/residential/page.tsx
+++ b/src/app/residential/page.tsx
@@ -1,11 +1,12 @@
"use client";
-import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
-import HeroSplit from '@/components/sections/hero/HeroSplit';
-import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
-import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
-import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
+import Link from 'next/link';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
+import SplitAbout from '@/components/sections/about/SplitAbout';
+import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
+import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
+import { CheckCircle, Home, Shield } from 'lucide-react';
export default function ResidentialPage() {
return (
@@ -24,63 +25,65 @@ export default function ResidentialPage() {
+
-
-
+
@@ -128,34 +126,34 @@ export default function ResidentialPage() {
columns={[
{
items: [
- { label: "Home", href: "/" },
- { label: "Residential Roofing", href: "/residential" },
- { label: "Commercial Roofing", href: "/commercial" },
- { label: "Storm Damage", href: "/storm-damage" }
+ { label: 'Home', href: '/' },
+ { label: 'Residential Roofing', href: '/residential' },
+ { label: 'Commercial Roofing', href: '/commercial' },
+ { label: 'Storm Damage', href: '/storm-damage' }
]
},
{
items: [
- { label: "About Us", href: "/about" },
- { label: "Project Gallery", href: "/gallery" },
- { label: "Customer Reviews", href: "/reviews" },
- { label: "Contact Us", href: "/contact" }
+ { label: 'About Us', href: '/about' },
+ { label: 'Project Gallery', href: '/gallery' },
+ { label: 'Customer Reviews', href: '/reviews' },
+ { label: 'Contact Us', href: '/contact' }
]
},
{
items: [
- { label: "Licensed & Insured", href: "#" },
- { label: "Warranty Information", href: "#" },
- { label: "Privacy Policy", href: "#" },
- { label: "Terms of Service", href: "#" }
+ { label: 'Licensed & Insured' },
+ { label: 'Warranty Information' },
+ { label: 'Privacy Policy' },
+ { label: 'Terms of Service' }
]
},
{
items: [
- { label: "Emergency Service", href: "tel:+1-701-555-0100" },
- { label: "701-555-0100", href: "tel:+1-701-555-0100" },
- { label: "Monday - Friday: 8AM - 6PM", href: "#" },
- { label: "24/7 Emergency Hotline", href: "tel:+1-701-555-0101" }
+ { label: 'Emergency Service', href: 'tel:+1-701-555-0100' },
+ { label: '701-555-0100', href: 'tel:+1-701-555-0100' },
+ { label: 'Monday - Friday: 8AM - 6PM' },
+ { label: '24/7 Emergency Hotline', href: 'tel:+1-701-555-0101' }
]
}
]}