diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index b87119d..6228db6 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -35,13 +35,13 @@ export default function BlogPage() { brandName="Iminio" navItems={[ { name: "Home", id: "/" }, - { name: "About Us", id: "about" }, - { name: "Services", id: "services" }, - { name: "Gallery", id: "gallery" }, - { name: "Testimonials", id: "testimonials" }, - { name: "Contact", id: "contact-us" }, + { name: "About Us", id: "/#about" }, + { name: "Services", id: "/#services" }, + { name: "Gallery", id: "/#gallery" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "Contact", id: "/#contact-us" }, ]} - button={{ text: "Order Now", href: "#contact-us" }} + button={{ text: "Order Now", href: "/#contact-us" }} /> @@ -68,17 +68,17 @@ export default function BlogPage() { columns={[ { title: "Explore Iminio", items: [ - { label: "Home", href: "#hero" }, - { label: "Our Story", href: "#about" }, - { label: "Services", href: "#services" }, - { label: "Gallery", href: "#gallery" }, + { label: "Home", href: "/" }, + { label: "Our Story", href: "/#about" }, + { label: "Services", href: "/#services" }, + { label: "Gallery", href: "/#gallery" }, ], }, { title: "Support", items: [ - { label: "FAQ", href: "#faq" }, - { label: "Contact Us", href: "#contact-us" }, - { label: "Delivery Info", href: "#contact-us" }, + { label: "FAQ", href: "/#faq" }, + { label: "Contact Us", href: "/#contact-us" }, + { label: "Delivery Info", href: "/#contact-us" }, ], }, { diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index ea3ca53..68a0b87 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -1,4 +1,4 @@ -use client"; +"use client"; import { use, useCallback } from "react"; import { useRouter } from "next/navigation"; @@ -205,17 +205,17 @@ export default function ProductPage({ params }: ProductPageProps) { columns={[ { title: "Explore Iminio", items: [ - { label: "Home", href: "#hero" }, - { label: "Our Story", href: "#about" }, - { label: "Services", href: "#services" }, - { label: "Gallery", href: "#gallery" } + { label: "Home", href: "/" }, + { label: "Our Story", href: "/#about" }, + { label: "Services", href: "/#services" }, + { label: "Gallery", href: "/#gallery" } ] }, { title: "Support", items: [ - { label: "FAQ", href: "#faq" }, - { label: "Contact Us", href: "#contact-us" }, - { label: "Delivery Info", href: "#contact-us" } + { label: "FAQ", href: "/#faq" }, + { label: "Contact Us", href: "/#contact-us" }, + { label: "Delivery Info", href: "/#contact-us" } ] }, { diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 5a4f90c..2a6ca47 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -1,4 +1,4 @@ -use client"; +"use client"; import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; @@ -129,17 +129,17 @@ export default function ShopPage() { columns={[ { title: "Explore Iminio", items: [ - { label: "Home", href: "#hero" }, - { label: "Our Story", href: "#about" }, - { label: "Services", href: "#services" }, - { label: "Gallery", href: "#gallery" } + { label: "Home", href: "/" }, + { label: "Our Story", href: "/#about" }, + { label: "Services", href: "/#services" }, + { label: "Gallery", href: "/#gallery" } ] }, { title: "Support", items: [ - { label: "FAQ", href: "#faq" }, - { label: "Contact Us", href: "#contact-us" }, - { label: "Delivery Info", href: "#contact-us" } + { label: "FAQ", href: "/#faq" }, + { label: "Contact Us", href: "/#contact-us" }, + { label: "Delivery Info", href: "/#contact-us" } ] }, {