From b4632da12a1811e0b2e81579f7814e24845042a9 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Feb 2026 09:36:25 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 2ac56bd..0bdee95 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,12 +10,13 @@ import FaqDouble from '@/components/sections/faq/FaqDouble'; import ContactFaq from '@/components/sections/contact/ContactFaq'; import { Handshake, HeartHandshake, MessageSquareText, Sparkles } from "lucide-react"; -const navItemsForHomePage = [ +const standardNavItems = [ + { name: "Home", id: "/" }, { name: "Products", id: "/products" }, - { name: "About", id: "about" }, - { name: "Testimonials", id: "testimonials" }, - { name: "FAQs", id: "faqs" }, - { name: "Contact", id: "contact" }, + { name: "About", id: "/#about" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "FAQs", id: "/#faqs" }, + { name: "Contact", id: "/#contact" } ]; export default function SitePage() { @@ -35,7 +36,7 @@ export default function SitePage() {