Merge version_2 into main #6

Merged
bender merged 1 commits from version_2 into main 2026-03-03 14:06:58 +00:00

View File

@@ -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: "/" },
],
},
];