73 lines
2.3 KiB
TypeScript
73 lines
2.3 KiB
TypeScript
import type { Metadata } from "next";
|
|
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";
|
|
|
|
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<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body
|
|
className={`${mulish.variable} ${inter.variable} antialiased`}
|
|
>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
} |