Merge version_3 into main #5

Merged
bender merged 1 commits from version_3 into main 2026-03-06 20:43:32 +00:00

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
@@ -47,7 +47,7 @@ export default function BarberHousePage() {
buttons={[
{ text: "Nous Trouver", href: "location" },
{ text: "Voir nos Tarifs", href: "pricing" },
{ text: "Nous Appeler", href: "tel:+41XXXXXXXXXX" }
{ text: "Nous Appeler", href: "tel:+41 79 598 30 33" }
]}
mediaItems={[
{
@@ -101,7 +101,7 @@ export default function BarberHousePage() {
{
id: "1", price: "25 CHF", name: "Coupe Adulte", buttons: [
{ text: "Prendre Rendez-vous", href: "location" },
{ text: "Nous Appeler", href: "tel:+41XXXXXXXXXX" }
{ text: "Nous Appeler", href: "tel:+41 79 598 30 33" }
],
features: [
"Dégradé précis", "Finitions soignées", "Consultation gratuite", "Sans attente excessive"
@@ -111,7 +111,7 @@ export default function BarberHousePage() {
id: "2", price: "20 CHF", name: "Coupe Étudiant", badge: "Tarif Réduit", badgeIcon: Sparkles,
buttons: [
{ text: "Prendre Rendez-vous", href: "location" },
{ text: "Nous Appeler", href: "tel:+41XXXXXXXXXX" }
{ text: "Nous Appeler", href: "tel:+41 79 598 30 33" }
],
features: [
"Même qualité que l'adulte", "Tarif spécial étudiant", "Dégradé net", "Finitions professionnelles"
@@ -120,7 +120,7 @@ export default function BarberHousePage() {
{
id: "3", price: "À Convenir", name: "Toilettage Barbe", buttons: [
{ text: "Nous Contacter", href: "location" },
{ text: "Plus d'Info", href: "tel:+41XXXXXXXXXX" }
{ text: "Nous Appeler", href: "tel:+41 79 598 30 33" }
],
features: [
"Modelage expert", "Coupe barbe précise", "Consultation incluse", "Tarif personnalisé"
@@ -202,4 +202,4 @@ export default function BarberHousePage() {
</div>
</ThemeProvider>
);
}
}