Update src/app/layout.tsx

This commit is contained in:
2026-03-12 20:57:00 +00:00
parent 3db19a2d34
commit 80b8bfdffb

View File

@@ -1,28 +1,53 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Mulish } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Mulish } from "next/font/google";
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Restaurante Bahía De Vigo | Authentic Galician Seafood",
description: "Experience exceptional Galician cuisine at Restaurante Bahía De Vigo. Fresh Atlantic seafood, traditional recipes, and award-winning service in Vigo, Spain.",
keywords: "galician restaurant, seafood restaurant, vigo spain, pulpo a la gallega, fine dining galicia, authentic spanish cuisine",
metadataBase: new URL("https://bahiavigo.com"),
alternates: {
canonical: "https://bahiavigo.com",
},
openGraph: {
title: "Restaurante Bahía De Vigo - Authentic Galician Seafood",
description: "Premier destination for authentic Galician cuisine featuring fresh Atlantic seafood and traditional Spanish recipes.",
siteName: "Restaurante Bahía De Vigo",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/top-view-fresh-mix-seafood-table_23-2148290485.jpg",
alt: "Restaurante Bahía De Vigo dining room",
},
],
},
twitter: {
card: "summary_large_image",
title: "Restaurante Bahía De Vigo",
description: "Authentic Galician seafood restaurant in Vigo, Spain. Fresh daily catches and traditional cuisine.",
images: ["http://img.b2bpic.net/free-photo/top-view-fresh-mix-seafood-table_23-2148290485.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -31,7 +56,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${mulish.variable} ${inter.variable} antialiased`}>
<body
className={`${mulish.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +70,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}