diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 94abf8c..e28c043 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -12,9 +12,9 @@ export default function ServicesPage() { const navItems = [ { name: "Home", id: "/" }, { name: "Services", id: "/services" }, - { name: "About", id: "about" }, - { name: "Reviews", id: "reviews" }, - { name: "Contact", id: "contact" }, + { name: "About", id: "/about" }, + { name: "Reviews", id: "/reviews" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ @@ -28,9 +28,9 @@ export default function ServicesPage() { }, { title: "Company", items: [ - { label: "About Us", href: "/#about" }, - { label: "Customer Reviews", href: "/#reviews" }, - { label: "Contact", href: "#contact" }, + { label: "About Us", href: "/about" }, + { label: "Customer Reviews", href: "/reviews" }, + { label: "Contact", href: "/contact" }, { label: "Emergency Service", href: "tel:(551)310-2400" }, ], }, @@ -39,7 +39,7 @@ export default function ServicesPage() { { label: "Phone: (551) 310-2400", href: "tel:(551)310-2400" }, { label: "Address: 260 Ryders Ln, Milltown, NJ 08850", href: "#" }, { label: "Open 24/7 for Emergencies", href: "#" }, - { label: "Free Estimates Available", href: "#contact" }, + { label: "Free Estimates Available", href: "/contact" }, ], }, ]; @@ -63,7 +63,7 @@ export default function ServicesPage() { brandName="Navarro Family Roofing" navItems={navItems} button={{ - text: "Get Free Estimate", href: "#contact"}} + text: "Get Free Estimate", href: "/contact"}} /> @@ -96,6 +96,40 @@ export default function ServicesPage() { /> + {/* Before and After Section */} +
+
+

Transformation Gallery

+
+ {/* Before */} +
+

Before

+
+ Roof before repair - damaged and worn +
+

Damaged, worn roof in need of repair

+
+ + {/* After */} +
+

After

+
+ Roof after repair - restored and pristine +
+

Professional restoration - like new again

+
+
+
+
+ {/* Service Quality Section */}
@@ -138,4 +172,4 @@ export default function ServicesPage() { ); -} \ No newline at end of file +}