From 2a2bfe99634fdfd41e9f378ee65a242afcaddd36 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 20:30:45 +0000 Subject: [PATCH] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index ee047b3..53c84ff 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -29,13 +29,13 @@ export default function BlogPage() { brandName="Zoryana Bakery" navItems={[ { name: "Home", id: "/" }, - { name: "About Us", id: "about" }, - { name: "Products", id: "products" }, - { name: "Testimonials", id: "testimonials" }, - { name: "FAQ", id: "faq" }, - { name: "Contact", id: "contact" }, + { name: "About Us", id: "/#about" }, + { name: "Products", id: "/#products" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "FAQ", id: "/#faq" }, + { name: "Contact", id: "/#contact" }, ]} - button={{ text: "Order Now", href: "#contact" }} + button={{ text: "Order Now", href: "/#contact" }} className="py-4 px-6 md:px-8" buttonClassName="px-5 py-2 text-sm md:text-base" buttonTextClassName="font-medium" @@ -62,20 +62,20 @@ export default function BlogPage() {