4 Commits

Author SHA1 Message Date
0a260f7ab6 Update src/app/blog/page.tsx 2026-05-26 17:42:35 +00:00
912cd30097 Update src/app/blog/page.tsx 2026-05-26 17:42:06 +00:00
f388c96554 Merge version_7 into main
Merge version_7 into main
2026-05-26 17:33:58 +00:00
87eb233c1a Merge version_7 into main
Merge version_7 into main
2026-05-26 17:33:22 +00:00

View File

@@ -8,6 +8,7 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin
import FooterMedia from '@/components/sections/footer/FooterMedia'; import FooterMedia from '@/components/sections/footer/FooterMedia';
const bookingUrl = "/contact"; const bookingUrl = "/contact";
const franchisePagePath = "/franchise-doc-barnet-grooming-salon";
export default function BlogPage() { export default function BlogPage() {
const { posts, isLoading } = useBlogPosts(); const { posts, isLoading } = useBlogPosts();
@@ -28,14 +29,19 @@ export default function BlogPage() {
<NavbarLayoutFloatingOverlay navItems={[ <NavbarLayoutFloatingOverlay navItems={[
{ {
name: "Home", id: "hero"}, name: "Home", id: "/"},
{ {
name: "Services", id: "services"}, name: "Services", id: "/#services"},
{ {
name: "Prices", id: "pricing"}, name: "Prices", id: "/#pricing"},
{ {
name: "Contact", id: "contact"}, name: "Contact", id: "/#contact"},
]}
{
name: "Blog", id: "/blog"},
{
name: "Franchise", id: franchisePagePath},
]}
brandName="Doc Barnet Grooming Salon" brandName="Doc Barnet Grooming Salon"
button={{ button={{
text: "BOOK NOW", href: bookingUrl}} /> text: "BOOK NOW", href: bookingUrl}} />
@@ -67,21 +73,23 @@ export default function BlogPage() {
{ {
title: "Services", items: [ 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: [ 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: "Book Now", href: bookingUrl},
{
label: "Franchise", href: franchisePagePath},
], ],
}, },
{ {
@@ -99,5 +107,4 @@ export default function BlogPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }