diff --git a/src/app/page.tsx b/src/app/page.tsx index b9d1cc3..2eb976a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,11 +8,12 @@ import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNinete import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; import ContactSplit from "@/components/sections/contact/ContactSplit"; import FooterMedia from "@/components/sections/footer/FooterMedia"; +import Link from "next/link"; import { Star, Award, Shield, Users } from "lucide-react"; export default function HomePage() { const navItems = [ - { name: "Home", id: "#" }, + { name: "Home", id: "/" }, { name: "Services", id: "#services" }, { name: "About", id: "#metrics" }, { name: "Contact", id: "#cta-section" }, @@ -31,16 +32,16 @@ export default function HomePage() { title: "Company", items: [ { label: "About Us", href: "#metrics" }, { label: "Contact", href: "#cta-section" }, - { label: "Service Area", href: "#" }, - { label: "FAQ", href: "#" }, + { label: "Service Area", href: "/" }, + { label: "FAQ", href: "/" }, ], }, { title: "Contact", items: [ { label: "(555) 123-4567", href: "tel:+1-555-123-4567" }, { label: "info@localproservices.com", href: "mailto:info@localproservices.com" }, - { label: "123 Main St, Your City, ST 12345", href: "#" }, - { label: "Mon-Fri: 8AM-6PM, Sat: 9AM-4PM", href: "#" }, + { label: "123 Main St, Your City, ST 12345", href: "/" }, + { label: "Mon-Fri: 8AM-6PM, Sat: 9AM-4PM", href: "/" }, ], }, ];