Merge version_2 into main #4
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -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:+41XXXXXXXXXX" }
|
||||
]}
|
||||
mediaItems={[
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user