From 048d1eb8aaf93236413ac7e05c868d1ff6b84ab2 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 12:53:58 +0000 Subject: [PATCH] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) 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" }, ], }, {