Update src/app/blog/page.tsx

This commit is contained in:
2026-02-18 02:20:49 +00:00
parent 092292623c
commit b3eadc3b3d

View File

@@ -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
}}
/>
</div>
@@ -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() {
</ReactLenis>
</ThemeProvider>
);
}
}