Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0a260f7ab6 | |||
| 912cd30097 | |||
| f388c96554 | |||
| 87eb233c1a |
@@ -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,13 +29,18 @@ 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={{
|
||||||
@@ -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},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -100,4 +108,3 @@ export default function BlogPage() {
|
|||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user