diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 300cbb6..d7c235b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,25 +1,37 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Roboto } from "next/font/google"; import "./globals.css"; import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Roboto } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const roboto = Roboto({ variable: "--font-roboto", subsets: ["latin"], weight: ["100", "300", "400", "500", "700", "900"], }); +export const metadata: Metadata = { + title: "Sizzle & Seoul - Premium Korean BBQ in Seoul", description: "Experience the finest authentic Korean BBQ in Seoul. Sizzle & Seoul offers premium meats, traditional flavors, and a modern elegant dining atmosphere. Book your reservation today.", keywords: ["Korean BBQ", "Seoul restaurant", "Korean food", "galbi", "bulgogi", "samgyeopsal", "fine dining", "reservation", "authentic Korean cuisine", "Hanwoo beef"], + metadataBase: new URL("https://sizzleandseoul.com"), + alternates: { + canonical: "https://sizzleandseoul.com" + }, + openGraph: { + title: "Sizzle & Seoul - Premium Korean BBQ in Seoul", description: "Experience the finest authentic Korean BBQ in Seoul. Sizzle & Seoul offers premium meats, traditional flavors, and a modern elegant dining atmosphere.", url: "https://sizzleandseoul.com", siteName: "Sizzle & Seoul", images: [{ + url: "http://img.b2bpic.net/free-photo/overhead-vertical-shot-meat-assortment-with-sauces_181624-23621.jpg", alt: "close up korean marinated beef bbq" + }], + type: "website" + }, + twitter: { + card: "summary_large_image", title: "Sizzle & Seoul - Premium Korean BBQ in Seoul", description: "Experience the finest authentic Korean BBQ in Seoul. Sizzle & Seoul offers premium meats, traditional flavors, and a modern elegant dining atmosphere.", images: ["http://img.b2bpic.net/free-photo/overhead-vertical-shot-meat-assortment-with-sauces_181624-23621.jpg"] + }, + robots: { + index: true, + follow: true + } +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +40,9 @@ export default function RootLayout({ return ( - + {children}