|
|
|
|
@@ -1,46 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import { Inter } 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 inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Doña Flavia | Tlayudas Legendarias de Oaxaca", description: "Vive la grandeza de Oaxaca. Tlayudas gigantes, horchata de autor, y atmósfera auténtica con murales históricos y música en vivo.", keywords: "tlayudas oaxaca, comida oaxaqueña, restaurante oaxaca, quesillo, horchata tuna", metadataBase: new URL("https://donaflavia.mx"),
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Doña Flavia | Tlayudas Legendarias", description: "Experiencia gastronómica auténtica de Oaxaca. Tlayudas de 40cm, bebidas artesanales y tradición viva.", siteName: "Doña Flavia", type: "website", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/side-view-cook-preparing-pizza_23-2150283010.jpg", alt: "charcoal grill tlayuda cooking smoke"},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Doña Flavia | Tlayudas Legendarias de Oaxaca", description: "La grandeza de Oaxaca en un solo bocado. Descubre nuestras tlayudas gigantes y bebidas artesanales.", images: ["http://img.b2bpic.net/free-photo/side-view-cook-preparing-pizza_23-2150283010.jpg"],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "Doña Flavia - Tlayudas de Oaxaca", description: "Experience the legendary oversized tlayudas of Doña Flavia. Authentic Oaxacan cuisine with artisanal tradition."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="es">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1408,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|