diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a02c995..46e3121 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}