Update src/app/services/page.tsx

This commit is contained in:
2026-03-24 22:16:08 +00:00
parent 0784955293
commit b02fbfefd5

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
import FooterCard from '@/components/sections/footer/FooterCard';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import { Building2, Calendar, Droplet, Facebook, Flame, Gas, Instagram, Phone, Pipe, Star, Twitter, Users, Wrench, Zap } from "lucide-react";
import { Building2, Calendar, Droplet, Facebook, Flame, Fuel, Instagram, Phone, Pipes, Star, Twitter, Users, Wrench, Zap } from "lucide-react";
export default function ServicesPage() {
return (
@@ -26,15 +26,15 @@ export default function ServicesPage() {
<NavbarStyleCentered
navItems={[
{
name: "Home", id: "home", href: "/"},
name: "Home", id: "home"},
{
name: "Services", id: "services", href: "/services"},
name: "Services", id: "services"},
{
name: "About Us", id: "about", href: "/about"},
name: "About Us", id: "about"},
{
name: "Reviews", id: "reviews", href: "/reviews"},
name: "Reviews", id: "reviews"},
{
name: "Contact", id: "contact", href: "/contact"},
name: "Contact", id: "contact"},
]}
button={{
text: "Call Now", href: "tel:+16151234567"}}
@@ -58,13 +58,13 @@ export default function ServicesPage() {
icon: Wrench,
title: "Drain Cleaning & Unclogging", description: "Comprehensive drain cleaning to remove stubborn blockages, grease buildup, and foreign objects, restoring optimal drainage in kitchens, bathrooms, and main lines."},
{
icon: Pipe,
icon: Pipes,
title: "Sewer Line Repair & Replacement", description: "From minor repairs to full sewer line replacements, we diagnose and resolve issues with minimal disruption to your property."},
{
icon: Zap,
title: "Emergency Plumbing Services", description: "24/7 rapid response for urgent plumbing issues like burst pipes, severe leaks, and major clogs, minimizing damage and restoring peace of mind."},
{
icon: Gas,
icon: Fuel,
title: "Gas Line Installation & Repair", description: "Safe and reliable installation, inspection, and repair of gas lines for appliances, fireplaces, and outdoor living spaces."},
{
icon: Building2,
@@ -98,4 +98,4 @@ export default function ServicesPage() {
</ReactLenis>
</ThemeProvider>
);
}
}