4 Commits

Author SHA1 Message Date
da30693b55 Update src/app/page.tsx 2026-03-03 22:23:33 +00:00
631fb8a92b Update src/app/layout.tsx 2026-03-03 22:23:32 +00:00
324b28ffad Merge version_2 into main
Merge version_2 into main
2026-03-03 22:18:56 +00:00
f9e2c0a27d Update src/app/page.tsx 2026-03-03 22:18:51 +00:00
2 changed files with 14 additions and 2 deletions

View File

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

View File

@@ -90,6 +90,18 @@ export default function BarbershopPage() {
"Haircut & Shave - $65", "Haircut, Shave & Facial - $90", "Haircut & Deluxe Beard - $60", "Gray Blending - $35", "Full Grooming Package - $95"
],
buttons: [{ text: "Book Package", href: "#contact" }]
},
{
id: "premium", label: "Premium Services", title: "Luxury Grooming & Treatments", items: [
"Hot Stone Massage - $45", "Premium Facial Treatment - $55", "Scalp Treatment - $35", "Deep Conditioning Treatment - $40", "Complete Luxury Package - $120"
],
buttons: [{ text: "Book Premium Service", href: "#contact" }]
},
{
id: "styling", label: "Styling & Color", title: "Hair Styling & Color Services", items: [
"Hair Styling - $28", "Color Treatment - $50", "Highlights - $65", "Gray Coverage - $45", "Full Color & Style Package - $95"
],
buttons: [{ text: "Book Styling", href: "#contact" }]
}
]}
animationType="slide-up"
@@ -196,4 +208,4 @@ export default function BarbershopPage() {
</div>
</ThemeProvider>
);
}
}