Update src/app/layout.tsx

This commit is contained in:
2026-03-03 23:41:39 +00:00
parent 1ccb5af737
commit 5b52afd564

View File

@@ -15,18 +15,19 @@ const inter = Inter({
});
export const metadata: Metadata = {
title: "Mi Fiesta | Authentic Mexican Restaurant in Beverly, WV", description: "Authentic Mexican cuisine in Beverly, WV. Enjoy fresh tacos, fajitas, burritos, and more. Located at 710 Main St. Order online or call 304-940-8053.", keywords: "Mexican restaurant Beverly WV, authentic tacos, fajitas near me, best Mexican food, burrito, Beverly West Virginia", robots: {
title: "Mi Fiesta | Auténtico Restaurante Mexicano en Beverly, WV", description: "Auténtica cocina mexicana en Beverly, WV. Disfruta de tacos frescos, fajitas, burritos y más. Ubicado en 710 Main St. Ordena en línea o llama al 304-940-8053.", keywords: "restaurante mexicano Beverly WV, tacos auténticos, fajitas cerca de mí, mejor comida mexicana, burrito, Beverly West Virginia", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Mi Fiesta | Authentic Mexican Cuisine", description: "Experience authentic Mexican flavors at Mi Fiesta in Beverly, WV", url: "https://mifiesta-beverly.com", siteName: "Mi Fiesta", type: "website", images: [
title: "Mi Fiesta | Auténtica Cocina Mexicana", description: "Experimenta auténticos sabores mexicanos en Mi Fiesta en Beverly, WV", url: "https://mifiesta-beverly.com", siteName: "Mi Fiesta", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/vertical-shot-tasty-tortillas-with-meat-tomato-sauce-ingredients_181624-46252.jpg", alt: "Mi Fiesta Mexican Restaurant"},
url: "http://img.b2bpic.net/free-photo/vertical-shot-tasty-tortillas-with-meat-tomato-sauce-ingredients_181624-46252.jpg", alt: "Restaurante Mexicano Mi Fiesta"
},
],
},
twitter: {
card: "summary_large_image", title: "Mi Fiesta | Authentic Mexican Restaurant", description: "Fresh, authentic Mexican cuisine in Beverly, WV", images: ["http://img.b2bpic.net/free-photo/vertical-shot-tasty-tortillas-with-meat-tomato-sauce-ingredients_181624-46252.jpg"],
card: "summary_large_image", title: "Mi Fiesta | Auténtico Restaurante Mexicano", description: "Auténtica cocina mexicana fresca en Beverly, WV", images: ["http://img.b2bpic.net/free-photo/vertical-shot-tasty-tortillas-with-meat-tomato-sauce-ingredients_181624-46252.jpg"],
},
};
@@ -36,7 +37,7 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<html lang="es" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
@@ -1414,4 +1415,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}