diff --git a/src/app/page.tsx b/src/app/page.tsx index 1de98cf..4aacfa6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,25 +10,12 @@ 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" } + { name: "Contact", id: "contact" }, ]; export default function SitePage() { @@ -49,7 +36,7 @@ export default function SitePage() {
@@ -187,7 +172,6 @@ export default function SitePage() { ctaPanelClassName="bg-card shadow-lg" ctaTitleClassName="font-light" ctaDescriptionClassName="text-foreground/80" - ctaButtonClassName="shadow-md" faqsPanelClassName="bg-card shadow-lg" />