Merge version_2 into main #3

Merged
bender merged 5 commits from version_2 into main 2026-03-24 22:16:11 +00:00
5 changed files with 26 additions and 25 deletions

View File

@@ -27,19 +27,19 @@ export default function AboutPage() {
<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={{

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import FooterCard from '@/components/sections/footer/FooterCard';
import ContactFaq from '@/components/sections/contact/ContactFaq';
import { Phone } from 'lucide-react';
import { Facebook, Instagram, Phone, Twitter } from 'lucide-react';
export default function ContactPage() {
return (
@@ -26,9 +26,9 @@ export default function ContactPage() {
<NavbarStyleCentered
navItems={[
{
name: "Home", id: "home", href: "/"},
name: "Home", id: "home"},
{
name: "Contact", id: "contact", href: "/contact"},
name: "Contact", id: "contact"},
]}
button={{
text: "Call Now", href: "tel:+16151234567"}}
@@ -69,7 +69,8 @@ export default function ContactPage() {
href: "https://twitter.com", ariaLabel: "Twitter"},
{
icon: Instagram,
href: "https://instagram.com", ariaLabel: "Instagram"},
href: "https://instagram.com", ariaLabel: "Instagram"
}
]}
/>
</div>

View File

@@ -31,9 +31,9 @@ export default function LandingPage() {
<NavbarStyleCentered
navItems={[
{
name: "Home", id: "home", href: "/"},
name: "Home", id: "home"},
{
name: "Contact", id: "contact", href: "/contact"},
name: "Contact", id: "contact"},
]}
button={{
text: "Call Now", href: "tel:+16151234567"}}

View File

@@ -26,15 +26,15 @@ export default function ReviewsPage() {
<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"}}

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>
);
}
}