Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0a260f7ab6 | |||
| 912cd30097 | |||
| f388c96554 | |||
| b8fac0dabd | |||
| 87eb233c1a | |||
| 061eb5388b | |||
| dd5450fcc4 | |||
| ec4bd4997f | |||
| 4f15a25670 | |||
| 4ef1da74af | |||
| 85e76d0978 | |||
| 7aa5cd0464 | |||
| 424fc1bda0 | |||
| d7b094f699 | |||
| b0e8fa1bcf | |||
| a8c68f6bdc | |||
| c2f5202634 | |||
| 9a568791ce |
@@ -7,32 +7,8 @@ import { useBlogPosts } from "@/hooks/useBlogPosts";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
|
||||
const footerColumns: FooterColumn[] = [
|
||||
{
|
||||
title: "Product",
|
||||
items: [
|
||||
{ label: "Features", href: "/features" },
|
||||
{ label: "Pricing", href: "/pricing" },
|
||||
{ label: "FAQ", href: "/faq" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Blog", href: "/blog" },
|
||||
{ label: "Careers", href: "/careers" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
{ label: "Documentation", href: "/docs" },
|
||||
{ label: "Support", href: "/support" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
];
|
||||
const bookingUrl = "/contact";
|
||||
const franchisePagePath = "/franchise-doc-barnet-grooming-salon";
|
||||
|
||||
export default function BlogPage() {
|
||||
const { posts, isLoading } = useBlogPosts();
|
||||
@@ -53,14 +29,19 @@ export default function BlogPage() {
|
||||
|
||||
<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"
|
||||
button={{
|
||||
text: "BOOK NOW", href: bookingUrl}} />
|
||||
@@ -92,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},
|
||||
],
|
||||
},
|
||||
{
|
||||
@@ -124,5 +107,4 @@ export default function BlogPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -14,7 +14,7 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
||||
|
||||
export default function LandingPage() {
|
||||
const bookingUrl = "https://www.fresha.com/book-now/doc-barnet-hair-studio-tzv4uhw7/all-offer?share=true&pId=2750001";
|
||||
const bookingUrl = "https://tinyurl.com/2kr8jy37";
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
|
||||
Reference in New Issue
Block a user