From 912cd30097f61eaec5f1f356903c6edef3d7520d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 26 May 2026 17:42:06 +0000 Subject: [PATCH] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 31 +++++++++++++++++++------------ 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index b3c1441..7811213 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -8,6 +8,7 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin import FooterMedia from '@/components/sections/footer/FooterMedia'; const bookingUrl = "/contact"; +const franchisePagePath = "/franchise-doc-barnet-grooming-salon"; export default function BlogPage() { const { posts, isLoading } = useBlogPosts(); @@ -28,14 +29,19 @@ export default function BlogPage() { @@ -67,21 +73,23 @@ export default function BlogPage() { { title: "Services", items: [ { - label: "Gents Hair", href: "#services"}, + label: "Gents Hair", href: "/#services"}, { - label: "Ladies Cut", href: "#services"}, + label: "Ladies Cut", href: "/#services"}, { - label: "Beard Grooming", href: "#services"}, + label: "Beard Grooming", href: "/#services"}, ], }, { title: "Company", items: [ { - label: "About Us", href: "#about"}, + label: "About Us", href: "/#about"}, { - label: "Contact", href: "#contact"}, + label: "Contact", href: "/#contact"}, { label: "Book Now", href: bookingUrl}, + { + label: "Franchise", href: franchisePagePath}, ], }, { @@ -99,5 +107,4 @@ export default function BlogPage() { ); -} - +} \ No newline at end of file