Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2e6288b3a4 | |||
| 026e622dd6 | |||
| 5e50f5fe0b | |||
| 6226e7fe51 | |||
| cff7a2e3f9 | |||
| 0d56ea2fdc | |||
| 74dfc85b07 | |||
| fe990d6d94 |
@@ -1,54 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
const publicSans = Public_Sans({
|
||||
variable: "--font-public-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Barber House Genève - Barbier Premium à Vernier", description: "Barber House: le barbier de référence à Genève. Dégradés nets, coupes impeccables, barbes soignées. Sans rendez-vous, tarifs justes (25 CHF adulte / 20 CHF étudiant).", keywords: "barbershop Genève, barbier Vernier, coupe de cheveux homme, toilettage barbe, barbier professionnel", metadataBase: new URL("https://barber-house-geneve.com"),
|
||||
alternates: {
|
||||
canonical: "https://barber-house-geneve.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "Barber House Genève - L'Art de la Coupe", description: "Barbershop premium à Vernier. Travail impeccable, sans rendez-vous, prix honnêtes. Découvrez nos tarifs et horaires.", url: "https://barber-house-geneve.com", siteName: "Barber House", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/man-sitting-chair-hairdresser-with-client-guy-drinkig-whiskey_1157-43584.jpg", alt: "premium barbershop interior dark aesthetic"
|
||||
}
|
||||
],
|
||||
type: "website"
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Barber House - Barbier Premium Genève", description: "Découvrez le meilleur barbier à Vernier. Dégradés nets, coupes impeccables, ambiance chaleureuse.", images: ["http://img.b2bpic.net/free-photo/man-sitting-chair-hairdresser-with-client-guy-drinkig-whiskey_1157-43584.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "Barber House - Barbershop à Genève", description: "Barbershop à Genève. Coupes impeccables, tarifs transparents, sans rendez-vous."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="fr">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
"use client"
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
@@ -8,7 +8,7 @@ import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
|
||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { MapPin, Instagram, Facebook, Quote, Sparkles } from 'lucide-react';
|
||||
import { MapPin, Instagram, Facebook, Quote, Sparkles, Phone } from 'lucide-react';
|
||||
|
||||
export default function BarberHousePage() {
|
||||
return (
|
||||
@@ -46,7 +46,8 @@ export default function BarberHousePage() {
|
||||
tag="Barber House"
|
||||
buttons={[
|
||||
{ text: "Nous Trouver", href: "location" },
|
||||
{ text: "Voir nos Tarifs", href: "pricing" }
|
||||
{ text: "Voir nos Tarifs", href: "pricing" },
|
||||
{ text: "Nous Appeler", href: "tel:+41 79 598 30 33" }
|
||||
]}
|
||||
mediaItems={[
|
||||
{
|
||||
@@ -100,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"
|
||||
@@ -110,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"
|
||||
@@ -119,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é"
|
||||
@@ -201,4 +202,4 @@ export default function BarberHousePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user