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 (