From af06b6e687041cb2c7f37ac801b15febf88e88d8 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Feb 2026 07:45:59 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 34 +++++++++++++++++++++++++--------- 1 file changed, 25 insertions(+), 9 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 37fc5d5..0e08270 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,6 +10,27 @@ import FaqDouble from '@/components/sections/faq/FaqDouble'; import ContactFaq from '@/components/sections/contact/ContactFaq'; import { Handshake, HeartHandshake, MessageSquareText, Sparkles } from "lucide-react"; +// Define common navigation items for sub-pages to maintain consistency +const ALL_NAV_ITEMS_SUB_PAGES = [ + { name: "Home", id: "/" }, + { name: "Products", id: "/products" }, + { name: "Shop", id: "/shop" }, + { name: "Blog", id: "/blog" }, + { name: "About", id: "/#about" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "FAQs", id: "/#faqs" } +]; + +// Define navigation items specifically for the homepage (no 'Home' link here) +const navItemsForHomePage = [ + { name: "Products", id: "/products" }, + { name: "About", id: "about" }, + { name: "Testimonials", id: "testimonials" }, + { name: "FAQs", id: "faqs" }, + { name: "Shop", id: "/shop" }, + { name: "Blog", id: "/blog" } +]; + export default function SitePage() { return (