diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index aa867ea..fab79bb 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -11,27 +11,27 @@ import { Award, Star, Zap } from 'lucide-react';
export default function AboutPage() {
const navItems = [
- { name: "Services", id: "services" },
- { name: "About", id: "about" },
- { name: "Gallery", id: "gallery" },
- { name: "Contact", id: "contact" },
+ { name: "Services", id: "/services" },
+ { name: "About", id: "/about" },
+ { name: "Gallery", id: "#gallery" },
+ { name: "Contact", id: "/contact" },
{ name: "Call: (603) 686-3047", id: "tel:+16036863047" },
];
const footerColumns = [
{
title: "Services", items: [
- { label: "Lawn Maintenance", href: "#services" },
- { label: "Landscape Design", href: "#services" },
- { label: "Property Cleanup", href: "#services" },
- { label: "Shrub & Hedge Trimming", href: "#services" },
+ { label: "Lawn Maintenance", href: "/services#spring" },
+ { label: "Landscape Design", href: "/services#summer" },
+ { label: "Property Cleanup", href: "/services#fall" },
+ { label: "Shrub & Hedge Trimming", href: "/services#winter" },
],
},
{
title: "Company", items: [
{ label: "About Us", href: "/about" },
- { label: "Why Choose Us", href: "#why-choose" },
- { label: "Gallery", href: "#gallery" },
+ { label: "Why Choose Us", href: "/" },
+ { label: "Gallery", href: "/" },
{ label: "Contact", href: "/contact" },
],
},
@@ -45,8 +45,8 @@ export default function AboutPage() {
},
{
title: "Community", items: [
- { label: "Reviews", href: "#testimonials" },
- { label: "Condo Services", href: "#services" },
+ { label: "Reviews", href: "/" },
+ { label: "Condo Services", href: "/services" },
{ label: "Seasonal Tips", href: "#" },
{ label: "Partner With Us", href: "/contact" },
],
@@ -138,4 +138,4 @@ export default function AboutPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index 40cf238..b324788 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -1,55 +1,50 @@
"use client";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
+import HeroLogo from '@/components/sections/hero/HeroLogo';
import ContactSplit from '@/components/sections/contact/ContactSplit';
-import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import Link from "next/link";
-import { CheckCircle, Phone, Mail, MapPin } from 'lucide-react';
+import { Phone, Mail, MapPin, CheckCircle } from 'lucide-react';
export default function ContactPage() {
const navItems = [
- { name: "Services", id: "services" },
- { name: "About", id: "about" },
- { name: "Gallery", id: "gallery" },
- { name: "Contact", id: "contact" },
- { name: "Call: (603) 555-0147", id: "tel:+16035550147" },
+ { name: "Services", id: "/services" },
+ { name: "About", id: "/about" },
+ { name: "Gallery", id: "/" },
+ { name: "Contact", id: "/contact" },
+ { name: "Call: (603) 686-3047", id: "tel:+16036863047" },
];
const footerColumns = [
{
- title: "Services",
- items: [
- { label: "Lawn Maintenance", href: "#services" },
- { label: "Landscape Design", href: "#services" },
- { label: "Property Cleanup", href: "#services" },
- { label: "Shrub & Hedge Trimming", href: "#services" },
+ title: "Services", items: [
+ { label: "Lawn Maintenance", href: "/services#spring" },
+ { label: "Landscape Design", href: "/services#summer" },
+ { label: "Property Cleanup", href: "/services#fall" },
+ { label: "Shrub & Hedge Trimming", href: "/services#winter" },
],
},
{
- title: "Company",
- items: [
+ title: "Company", items: [
{ label: "About Us", href: "/about" },
- { label: "Why Choose Us", href: "#why-choose" },
- { label: "Gallery", href: "#gallery" },
+ { label: "Why Choose Us", href: "/" },
+ { label: "Gallery", href: "/" },
{ label: "Contact", href: "/contact" },
],
},
{
- title: "Contact",
- items: [
- { label: "Call: (603) 555-0147", href: "tel:+16035550147" },
+ title: "Contact", items: [
+ { label: "Call: (603) 686-3047", href: "tel:+16036863047" },
{ label: "Email: info@yetilandcare.com", href: "mailto:info@yetilandcare.com" },
{ label: "10 Kingston Rd, Exeter, NH 03833", href: "#" },
{ label: "Service Area: Exeter & Seacoast NH", href: "#" },
],
},
{
- title: "Community",
- items: [
- { label: "Reviews", href: "#testimonials" },
- { label: "Condo Services", href: "#services" },
+ title: "Community", items: [
+ { label: "Reviews", href: "/" },
+ { label: "Condo Services", href: "/services" },
{ label: "Seasonal Tips", href: "#" },
{ label: "Partner With Us", href: "/contact" },
],
@@ -73,54 +68,38 @@ export default function ContactPage() {