Update src/app/layout.tsx

This commit is contained in:
2026-03-05 20:43:36 +00:00
parent 1537795a7f
commit ee43e1ddca

View File

@@ -1,24 +1,13 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Montserrat } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "VR Hair Salon | Peluquería Profesional en Bogotá", description: "VR Hair Salon - Peluquería profesional en Bogotá. Servicios de corte, color y tratamientos capilares. Ubicado en Cra. 53a #122-25 3. Abierto de lunes a sábado.", keywords: "peluquería bogotá, salon de belleza, cortes de cabello, color cabello, tratamientos capilares", metadataBase: new URL("https://vrhairsalon.com"),
alternates: {
@@ -44,11 +33,9 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<html lang="es" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<body className={`${inter.variable} antialiased`}>
<Tag />
{children}
@@ -1422,4 +1409,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}