Update src/app/layout.tsx

This commit is contained in:
2026-03-05 17:59:29 +00:00
parent e6e0388d5c
commit d9632150cb

View File

@@ -1,52 +1,24 @@
import type { Metadata } from "next";
import { Poppins } from "next/font/google";
import { Manrope } 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/variables.css";
import "./styles/base.css";
const poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Tendance Vintage - Salon de Coiffure Bordeaux | Luxe & Excellence", description: "Découvrez Tendance Vintage, votre salon de coiffure haut de gamme à Bordeaux. Services experts: balayage, coloration, brushing, lissage. 4.9★ (571 avis). 05 56 72 79 35", keywords: "salon coiffure Bordeaux, coiffeur Bordeaux, balayage, coloration cheveux, brushing, lissage brésilien, soins kératine, taille barbe", metadataBase: new URL("https://tendance-vintage-bordeaux.fr"),
alternates: {
canonical: "https://tendance-vintage-bordeaux.fr"},
openGraph: {
title: "Tendance Vintage - Salon de Coiffure Luxe à Bordeaux", description: "Salon de coiffure d'exception au cœur de Bordeaux. Services premium: balayage, coloration, brushing. 4.9★ (571 avis)", url: "https://tendance-vintage-bordeaux.fr", siteName: "Tendance Vintage", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/two-hairstylers-posing-standing-modern-spacy-beaty-salon_651396-986.jpg", alt: "Tendance Vintage - Salon de Coiffure Bordeaux"},
],
},
twitter: {
card: "summary_large_image", title: "Tendance Vintage - Salon de Coiffure Luxe à Bordeaux", description: "Salon de coiffure d'exception à Bordeaux. Services premium et stylistes experts. 4.9★ (571 avis)", images: ["http://img.b2bpic.net/free-photo/two-hairstylers-posing-standing-modern-spacy-beaty-salon_651396-986.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Tendance Vintage - Salon de Coiffure à Bordeaux", description: "Salon de coiffure haut de gamme à Bordeaux. Services professionnels de coiffure, coloration, et soins capillaires."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${poppins.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<html lang="fr">
<body className={inter.className}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1414,7 +1386,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}