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() {