2 Commits

Author SHA1 Message Date
026e622dd6 Update src/app/page.tsx 2026-03-06 20:43:27 +00:00
5e50f5fe0b Merge version_2 into main
Merge version_2 into main
2026-03-06 20:42:13 +00:00

View File

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