diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 13dd0dc..5c928c3 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -7,6 +7,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import { useBlogPosts } from "@/hooks/useBlogPosts"; +const FRESHA_BOOKING_URL = "https://www.fresha.com/a/oriblendz-pembroke-pines-3127-northwest-84th-way-mc1s2lzu/booking?menu=true&share=true&cartId=f8ebd1d7-ee19-40d7-830a-50d2e8282b16"; + export default function BlogPage() { const { posts, isLoading } = useBlogPosts(); @@ -35,7 +37,7 @@ export default function BlogPage() { { name: "Contact", id: "contact" } ]} button={{ - text: "Book Now", href: "https://www.fresha.com/a/oriblendz-pembroke-pines-3127-northwest-84th-way-mc1s2lzu/booking?menu=true&share=true" + text: "Book Now", href: FRESHA_BOOKING_URL }} /> @@ -76,7 +78,7 @@ export default function BlogPage() { }, { title: "Connect", items: [ - { label: "Book Now", href: "https://www.fresha.com/a/oriblendz-pembroke-pines-3127-northwest-84th-way-mc1s2lzu/booking?menu=true&share=true" }, + { label: "Book Now", href: FRESHA_BOOKING_URL }, { label: "Phone", href: "tel:754-837-0279" }, { label: "TikTok", href: "https://www.tiktok.com/@oriblendz" } ] @@ -94,4 +96,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +}