5 Commits

Author SHA1 Message Date
ef622cf3a8 Update src/app/shop/page.tsx 2026-02-18 02:20:52 +00:00
a66ce7fb91 Update src/app/shop/[id]/page.tsx 2026-02-18 02:20:52 +00:00
8cd363c246 Update src/app/page.tsx 2026-02-18 02:20:51 +00:00
b9f721fc5b Update src/app/layout.tsx 2026-02-18 02:20:50 +00:00
b3eadc3b3d Update src/app/blog/page.tsx 2026-02-18 02:20:49 +00:00
5 changed files with 59 additions and 35 deletions

View File

@@ -7,6 +7,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import { useBlogPosts } from "@/hooks/useBlogPosts"; 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() { export default function BlogPage() {
const { posts, isLoading } = useBlogPosts(); const { posts, isLoading } = useBlogPosts();
@@ -35,7 +37,7 @@ export default function BlogPage() {
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
button={{ 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> </div>
@@ -76,7 +78,7 @@ export default function BlogPage() {
}, },
{ {
title: "Connect", items: [ 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: "Phone", href: "tel:754-837-0279" },
{ label: "TikTok", href: "https://www.tiktok.com/@oriblendz" } { label: "TikTok", href: "https://www.tiktok.com/@oriblendz" }
] ]
@@ -94,4 +96,4 @@ export default function BlogPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -1323,4 +1323,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -7,7 +7,9 @@ import ProductCardOne from "@/components/sections/product/ProductCardOne";
import PricingCardFive from "@/components/sections/pricing/PricingCardFive"; import PricingCardFive from "@/components/sections/pricing/PricingCardFive";
import ContactText from "@/components/sections/contact/ContactText"; import ContactText from "@/components/sections/contact/ContactText";
import FooterBase from "@/components/sections/footer/FooterBase"; import FooterBase from "@/components/sections/footer/FooterBase";
import { Scissors, Award, Sparkles } from "lucide-react"; import { Scissors, Award, Sparkles, Phone, MapPin } from "lucide-react";
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 LandingPage() { export default function LandingPage() {
return ( return (
@@ -34,7 +36,7 @@ export default function LandingPage() {
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
button={{ 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> </div>
@@ -50,7 +52,7 @@ export default function LandingPage() {
plans={[ plans={[
{ {
id: "haircut", tag: "Haircut", price: "$20", period: "", description: "Professional precision cut tailored to your style", button: { id: "haircut", tag: "Haircut", price: "$20", period: "", description: "Professional precision cut tailored to your style", 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
}, },
featuresTitle: "What's Included:", features: [ featuresTitle: "What's Included:", features: [
"45 minute appointment", "Expert consultation", "Custom fade work", "Line up detail" "45 minute appointment", "Expert consultation", "Custom fade work", "Line up detail"
@@ -58,7 +60,7 @@ export default function LandingPage() {
}, },
{ {
id: "design", tag: "Design", price: "$25", period: "", description: "Intricate design work and custom patterns", button: { id: "design", tag: "Design", price: "$25", period: "", description: "Intricate design work and custom patterns", 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
}, },
featuresTitle: "What's Included:", features: [ featuresTitle: "What's Included:", features: [
"30 minute appointment", "Custom design creation", "Precision toolwork", "Professional execution" "30 minute appointment", "Custom design creation", "Precision toolwork", "Professional execution"
@@ -66,7 +68,7 @@ export default function LandingPage() {
}, },
{ {
id: "eyebrows", tag: "Eyebrows", price: "$20", period: "", description: "Meticulous eyebrow shaping and grooming", button: { id: "eyebrows", tag: "Eyebrows", price: "$20", period: "", description: "Meticulous eyebrow shaping and grooming", 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
}, },
featuresTitle: "What's Included:", features: [ featuresTitle: "What's Included:", features: [
"20 minute appointment", "Expert shaping", "Precise trimming", "Refined finishing" "20 minute appointment", "Expert shaping", "Precise trimming", "Refined finishing"
@@ -74,7 +76,7 @@ export default function LandingPage() {
}, },
{ {
id: "lineup", tag: "Lineup", price: "$15", period: "", description: "Clean, sharp edge details and precision lines", button: { id: "lineup", tag: "Lineup", price: "$15", period: "", description: "Clean, sharp edge details and precision lines", 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
}, },
featuresTitle: "What's Included:", features: [ featuresTitle: "What's Included:", features: [
"15 minute appointment", "Sharp edge work", "Precise line creation", "Clean finish" "15 minute appointment", "Sharp edge work", "Precise line creation", "Clean finish"
@@ -82,7 +84,7 @@ export default function LandingPage() {
}, },
{ {
id: "beard", tag: "Beard", price: "$20", period: "", description: "Expert beard shaping and maintenance", button: { id: "beard", tag: "Beard", price: "$20", period: "", description: "Expert beard shaping and maintenance", 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
}, },
featuresTitle: "What's Included:", features: [ featuresTitle: "What's Included:", features: [
"20 minute appointment", "Professional trimming", "Shape refinement", "Clean edges" "20 minute appointment", "Professional trimming", "Shape refinement", "Clean edges"
@@ -91,7 +93,7 @@ export default function LandingPage() {
{ {
id: "full-experience", tag: "FULL EXPERIENCE", tagIcon: Sparkles, id: "full-experience", tag: "FULL EXPERIENCE", tagIcon: Sparkles,
price: "$65", period: "+", description: "Complete grooming package with haircut and detailed work", button: { price: "$65", period: "+", description: "Complete grooming package with haircut and detailed work", 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
}, },
featuresTitle: "Complete Package:", features: [ featuresTitle: "Complete Package:", features: [
"Professional haircut", "Design or detail work", "Eyebrow shaping", "Sharp line up", "Beard grooming", "Expert finishing touches" "Professional haircut", "Design or detail work", "Eyebrow shaping", "Sharp line up", "Beard grooming", "Expert finishing touches"
@@ -149,20 +151,36 @@ export default function LandingPage() {
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactText <div className="py-20 px-vw-1_5">
text="Ready to experience elite grooming? Book your appointment at ORIBLENDZ today and discover precision crafted excellence." <div className="mx-auto w-content-width">
animationType="reveal-blur" <div className="grid grid-cols-1 md:grid-cols-2 gap-8 md:gap-12">
buttons={[ <div className="flex flex-col gap-6">
{ <div className="flex items-start gap-4">
text: "Book Appointment", href: "https://www.fresha.com/a/oriblendz-pembroke-pines-3127-northwest-84th-way-mc1s2lzu/booking?menu=true&share=true" <Phone className="w-6 h-6 text-primary-cta mt-1 flex-shrink-0" />
}, <div>
{ <h3 className="font-semibold text-foreground mb-2">Phone</h3>
text: "Get in Touch", href: "tel:754-837-0279" <a href="tel:754-837-0279" className="text-foreground/80 hover:text-primary-cta transition">754-837-0279</a>
} </div>
]} </div>
background={{ variant: "plain" }} <div className="flex items-start gap-4">
useInvertedBackground={false} <MapPin className="w-6 h-6 text-primary-cta mt-1 flex-shrink-0" />
/> <div>
<h3 className="font-semibold text-foreground mb-2">Address</h3>
<p className="text-foreground/80">3127 Northwest 84th Way</p>
<p className="text-foreground/80">Pembroke Pines, Florida</p>
</div>
</div>
</div>
<div className="flex flex-col justify-center gap-4">
<p className="text-foreground/90">Ready to experience elite grooming? Book your appointment at ORIBLENDZ today and discover precision crafted excellence.</p>
<div className="flex flex-col gap-3">
<a href={FRESHA_BOOKING_URL} className="bg-primary-cta text-background px-6 py-3 rounded-theme text-center font-semibold hover:opacity-90 transition">Book Appointment</a>
<a href="tel:754-837-0279" className="border border-primary-cta text-primary-cta px-6 py-3 rounded-theme text-center font-semibold hover:bg-primary-cta hover:text-background transition">Call Now</a>
</div>
</div>
</div>
</div>
</div>
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
@@ -180,7 +198,7 @@ export default function LandingPage() {
{ {
title: "Connect", items: [ 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: "Phone", href: "tel:754-837-0279" },
{ label: "TikTok", href: "https://www.tiktok.com/@oriblendz" } { label: "TikTok", href: "https://www.tiktok.com/@oriblendz" }
@@ -198,4 +216,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -12,6 +12,8 @@ import { useProductDetail } from "@/hooks/useProductDetail";
import { useCart } from "@/hooks/useCart"; import { useCart } from "@/hooks/useCart";
import { useCheckout } from "@/hooks/useCheckout"; import { useCheckout } from "@/hooks/useCheckout";
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";
interface ProductPageProps { interface ProductPageProps {
params: Promise<{ id: string }>; params: Promise<{ id: string }>;
} }
@@ -104,7 +106,7 @@ export default function ProductPage({ params }: ProductPageProps) {
copyrightText="© 2025 ORIBLENDZ | Private Luxury Studio" copyrightText="© 2025 ORIBLENDZ | Private Luxury Studio"
columns={[ columns={[
{"title":"Studio","items":[{"label":"Home","href":"hero"},{"label":"Services","href":"services"},{"label":"Gallery","href":"gallery"}]}, {"title":"Studio","items":[{"label":"Home","href":"hero"},{"label":"Services","href":"services"},{"label":"Gallery","href":"gallery"}]},
{"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":"Phone","href":"tel:754-837-0279"},{"label":"TikTok","href":"https://www.tiktok.com/@oriblendz"}]}, {"title":"Connect","items":[{"label":"Book Now","href":FRESHA_BOOKING_URL},{"label":"Phone","href":"tel:754-837-0279"},{"label":"TikTok","href":"https://www.tiktok.com/@oriblendz"}]},
{"title":"Location","items":[{"label":"3127 Northwest 84th Way","href":"#"},{"label":"Pembroke Pines, Florida","href":"#"},{"label":"Appointment Only","href":"#"}]} {"title":"Location","items":[{"label":"3127 Northwest 84th Way","href":"#"},{"label":"Pembroke Pines, Florida","href":"#"},{"label":"Appointment Only","href":"#"}]}
]} ]}
/> />
@@ -160,7 +162,7 @@ export default function ProductPage({ params }: ProductPageProps) {
copyrightText="© 2025 ORIBLENDZ | Private Luxury Studio" copyrightText="© 2025 ORIBLENDZ | Private Luxury Studio"
columns={[ columns={[
{"title":"Studio","items":[{"label":"Home","href":"hero"},{"label":"Services","href":"services"},{"label":"Gallery","href":"gallery"}]}, {"title":"Studio","items":[{"label":"Home","href":"hero"},{"label":"Services","href":"services"},{"label":"Gallery","href":"gallery"}]},
{"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":"Phone","href":"tel:754-837-0279"},{"label":"TikTok","href":"https://www.tiktok.com/@oriblendz"}]}, {"title":"Connect","items":[{"label":"Book Now","href":FRESHA_BOOKING_URL},{"label":"Phone","href":"tel:754-837-0279"},{"label":"TikTok","href":"https://www.tiktok.com/@oriblendz"}]},
{"title":"Location","items":[{"label":"3127 Northwest 84th Way","href":"#"},{"label":"Pembroke Pines, Florida","href":"#"},{"label":"Appointment Only","href":"#"}]} {"title":"Location","items":[{"label":"3127 Northwest 84th Way","href":"#"},{"label":"Pembroke Pines, Florida","href":"#"},{"label":"Appointment Only","href":"#"}]}
]} ]}
/> />
@@ -240,7 +242,7 @@ export default function ProductPage({ params }: ProductPageProps) {
copyrightText="© 2025 ORIBLENDZ | Private Luxury Studio" copyrightText="© 2025 ORIBLENDZ | Private Luxury Studio"
columns={[ columns={[
{"title":"Studio","items":[{"label":"Home","href":"hero"},{"label":"Services","href":"services"},{"label":"Gallery","href":"gallery"}]}, {"title":"Studio","items":[{"label":"Home","href":"hero"},{"label":"Services","href":"services"},{"label":"Gallery","href":"gallery"}]},
{"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":"Phone","href":"tel:754-837-0279"},{"label":"TikTok","href":"https://www.tiktok.com/@oriblendz"}]}, {"title":"Connect","items":[{"label":"Book Now","href":FRESHA_BOOKING_URL},{"label":"Phone","href":"tel:754-837-0279"},{"label":"TikTok","href":"https://www.tiktok.com/@oriblendz"}]},
{"title":"Location","items":[{"label":"3127 Northwest 84th Way","href":"#"},{"label":"Pembroke Pines, Florida","href":"#"},{"label":"Appointment Only","href":"#"}]} {"title":"Location","items":[{"label":"3127 Northwest 84th Way","href":"#"},{"label":"Pembroke Pines, Florida","href":"#"},{"label":"Appointment Only","href":"#"}]}
]} ]}
/> />
@@ -248,4 +250,4 @@ export default function ProductPage({ params }: ProductPageProps) {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -8,6 +8,8 @@ import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog
import { useProductCatalog } from "@/hooks/useProductCatalog"; import { useProductCatalog } from "@/hooks/useProductCatalog";
import { useState } from "react"; import { useState } from "react";
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 ShopPage() { export default function ShopPage() {
const { const {
products, products,
@@ -57,7 +59,7 @@ export default function ShopPage() {
copyrightText="© 2025 ORIBLENDZ | Private Luxury Studio" copyrightText="© 2025 ORIBLENDZ | Private Luxury Studio"
columns={[ columns={[
{"title":"Studio","items":[{"label":"Home","href":"hero"},{"label":"Services","href":"services"},{"label":"Gallery","href":"gallery"}]}, {"title":"Studio","items":[{"label":"Home","href":"hero"},{"label":"Services","href":"services"},{"label":"Gallery","href":"gallery"}]},
{"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":"Phone","href":"tel:754-837-0279"},{"label":"TikTok","href":"https://www.tiktok.com/@oriblendz"}]}, {"title":"Connect","items":[{"label":"Book Now","href":FRESHA_BOOKING_URL},{"label":"Phone","href":"tel:754-837-0279"},{"label":"TikTok","href":"https://www.tiktok.com/@oriblendz"}]},
{"title":"Location","items":[{"label":"3127 Northwest 84th Way","href":"#"},{"label":"Pembroke Pines, Florida","href":"#"},{"label":"Appointment Only","href":"#"}]} {"title":"Location","items":[{"label":"3127 Northwest 84th Way","href":"#"},{"label":"Pembroke Pines, Florida","href":"#"},{"label":"Appointment Only","href":"#"}]}
]} ]}
/> />
@@ -112,7 +114,7 @@ export default function ShopPage() {
copyrightText="© 2025 ORIBLENDZ | Private Luxury Studio" copyrightText="© 2025 ORIBLENDZ | Private Luxury Studio"
columns={[ columns={[
{"title":"Studio","items":[{"label":"Home","href":"hero"},{"label":"Services","href":"services"},{"label":"Gallery","href":"gallery"}]}, {"title":"Studio","items":[{"label":"Home","href":"hero"},{"label":"Services","href":"services"},{"label":"Gallery","href":"gallery"}]},
{"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":"Phone","href":"tel:754-837-0279"},{"label":"TikTok","href":"https://www.tiktok.com/@oriblendz"}]}, {"title":"Connect","items":[{"label":"Book Now","href":FRESHA_BOOKING_URL},{"label":"Phone","href":"tel:754-837-0279"},{"label":"TikTok","href":"https://www.tiktok.com/@oriblendz"}]},
{"title":"Location","items":[{"label":"3127 Northwest 84th Way","href":"#"},{"label":"Pembroke Pines, Florida","href":"#"},{"label":"Appointment Only","href":"#"}]} {"title":"Location","items":[{"label":"3127 Northwest 84th Way","href":"#"},{"label":"Pembroke Pines, Florida","href":"#"},{"label":"Appointment Only","href":"#"}]}
]} ]}
/> />
@@ -120,4 +122,4 @@ export default function ShopPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }