diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 5f6af36..460f3fb 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -35,13 +35,13 @@ export default function BlogPage() { brandName="Lviv Bakery" navItems={[ { name: "Home", id: "/" }, - { name: "Menu", id: "products" }, - { name: "About Us", id: "about" }, - { name: "Reviews", id: "testimonials" }, - { name: "FAQ", id: "faq" }, - { name: "Contact", id: "contact" }, + { name: "Menu", id: "/#products" }, + { name: "About Us", id: "/#about" }, + { name: "Reviews", 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" buttonClassName="px-5 py-2" buttonTextClassName="font-semibold" @@ -69,19 +69,19 @@ export default function BlogPage() {