Files
8ef42d6c-811d-4eb7-9518-3a6…/src/app/layout.tsx
2026-03-12 16:48:42 +00:00

74 lines
2.2 KiB
TypeScript

import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Ewi Turi - Ramen & Sushi | Experiencia Japonesa en Chihuahua",
description: "Vive una experiencia japonesa inmersiva en Chihuahua. Ramen artesanal, sushi premium y atmósfera auténtica de Tokio. Reserva tu mesa hoy.",
keywords: "ramen chihuahua, sushi chihuahua, restaurante japonés chihuahua, ramen tonkotsu, experiencia japonesa",
openGraph: {
title: "Ewi Turi - Ramen & Sushi",
description: "Experiencia Japonesa Inmersiva en el Corazón de Chihuahua",
type: "website",
siteName: "Ewi Turi",
images: [
{
url: "http://img.b2bpic.net/free-photo/traffic-light-city-streets_23-2149092008.jpg",
alt: "Ewi Turi Restaurant Interior",
},
],
},
twitter: {
card: "summary_large_image",
title: "Ewi Turi - Ramen & Sushi",
description: "Experiencia Japonesa Inmersiva en Chihuahua",
images: [
"http://img.b2bpic.net/free-photo/different-type-noodles-with-eggs-seaweeds-salad-bowl-red-backdrop_23-2148123679.jpg",
],
},
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}