From 2d1383abb98e572ce604b4717d694815b4a392ad Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 28 May 2026 13:54:19 +0000 Subject: [PATCH 1/2] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 91 +++++++++++++++++++------------------------ 1 file changed, 39 insertions(+), 52 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 35faea8..4878a0a 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -8,11 +8,47 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin import FooterMedia from '@/components/sections/footer/FooterMedia'; const bookingUrl = "https://tinyurl.com/2kr8jy37"; -const franchisePagePath = "/franchise"; export default function BlogPage() { const { posts, isLoading } = useBlogPosts(); + const navItems = [ + { name: "Home", id: "/" }, + { name: "Services", id: "/services" }, + { name: "Products", id: "/products" }, + { name: "Prices", id: "/#pricing" }, + { name: "Franchise", id: "/franchise" }, + { name: "Blog", id: "/blog" }, + { name: "Contact", id: "/#contact" }, + ]; + + const footerColumns = [ + { + title: "Services", items: [ + { label: "Gents Hair", href: "/services" }, + { label: "Ladies Cut", href: "/services" }, + { label: "Beard Grooming", href: "/services" }, + ], + }, + { + title: "Company", items: [ + { label: "About Us", href: "/#about" }, + { label: "Contact", href: "/#contact" }, + { label: "Book Now", href: bookingUrl }, + { label: "Products", href: "/products" }, + { label: "Blog", href: "/blog" }, + { label: "Franchise", href: "/franchise" }, + ], + }, + { + title: "Social", items: [ + { label: "Instagram", href: "https://www.instagram.com/docbarnet?igsh=MWMwdHBnamFibXc3Yw%3D%3D&utm_source=qr" }, + { label: "Facebook", href: "#" }, + { label: "Privacy Policy", href: "#" }, + ], + }, + ]; + return ( From 477c43fd0023a6c612d6812a73f9353f05f95eac Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 28 May 2026 13:54:19 +0000 Subject: [PATCH 2/2] Update src/app/franchise/page.tsx --- src/app/franchise/page.tsx | 89 +++++++++++++++++--------------------- 1 file changed, 39 insertions(+), 50 deletions(-) diff --git a/src/app/franchise/page.tsx b/src/app/franchise/page.tsx index c88b28e..c704499 100644 --- a/src/app/franchise/page.tsx +++ b/src/app/franchise/page.tsx @@ -9,6 +9,43 @@ import FooterMedia from '@/components/sections/footer/FooterMedia'; export default function FranchisePage() { const bookingUrl = "https://tinyurl.com/2kr8jy37"; + const navItems = [ + { name: "Home", id: "/" }, + { name: "Services", id: "/services" }, + { name: "Products", id: "/products" }, + { name: "Prices", id: "/#pricing" }, + { name: "Franchise", id: "/franchise" }, + { name: "Blog", id: "/blog" }, + { name: "Contact", id: "/#contact" }, + ]; + + const footerColumns = [ + { + title: "Services", items: [ + { label: "Gents Hair", href: "/services" }, + { label: "Ladies Cut", href: "/services" }, + { label: "Beard Grooming", href: "/services" }, + ], + }, + { + title: "Company", items: [ + { label: "About Us", href: "/#about" }, + { label: "Contact", href: "/#contact" }, + { label: "Book Now", href: bookingUrl }, + { label: "Products", href: "/products" }, + { label: "Blog", href: "/blog" }, + { label: "Franchise", href: "/franchise" }, + ], + }, + { + title: "Social", items: [ + { label: "Instagram", href: "https://www.instagram.com/docbarnet?igsh=MWMwdHBnamFibXc3Yw%3D%3D&utm_source=qr" }, + { label: "Facebook", href: "#" }, + { label: "Privacy Policy", href: "#" }, + ], + }, + ]; + return (