Update src/app/layout.tsx

This commit is contained in:
2026-03-07 10:10:15 +00:00
parent 373694e27c
commit c2104df199

View File

@@ -22,24 +22,26 @@ const sourceSans3 = Source_Sans_3({
export const metadata: Metadata = {
title: "중화루 Joong Wha Ru | Authentic Korean-Chinese Cuisine Schwalbach", description: "Authentic Korean-Chinese restaurant in Schwalbach am Taunus, Germany. Trusted by Korean community. Dine-in & Takeaway. Jjajangmyeon, Jjamppong, Tangsuyuk & more.", keywords: "Korean restaurant, Korean-Chinese cuisine, Schwalbach am Taunus, authentic Korean food, 중화루, Joong Wha Ru, jjajangmyeon, Asian cuisine Germany", metadataBase: new URL("https://joong-wha-ru.de"),
alternates: {
canonical: "https://joong-wha-ru.de"},
canonical: "https://joong-wha-ru.de"
},
openGraph: {
title: "중화루 - Authentic Korean-Chinese Cuisine", description: "Experience authentic Korean-Chinese flavors in Schwalbach. Popular menu items include Jjajangmyeon, Jjamppong, and Tangsuyuk.", type: "website", url: "https://joong-wha-ru.de", siteName: "중화루 Joong Wha Ru", images: [
{
url: "http://img.b2bpic.net/free-photo/vertical-high-angle-shot-bowls-hummus-vegetable-soup-grey-surface_181624-25238.jpg", alt: "중화루 Authentic Korean Noodles"},
],
url: "http://img.b2bpic.net/free-photo/vertical-high-angle-shot-bowls-hummus-vegetable-soup-grey-surface_181624-25238.jpg", alt: "중화루 Authentic Korean Noodles"
}
]
},
twitter: {
card: "summary_large_image", title: "중화루 - Authentic Korean-Chinese Cuisine", description: "Discover authentic Korean-Chinese flavors in Schwalbach am Taunus. Reserve now or order takeaway.", images: ["http://img.b2bpic.net/free-photo/vertical-high-angle-shot-bowls-hummus-vegetable-soup-grey-surface_181624-25238.jpg"],
card: "summary_large_image", title: "중화루 - Authentic Korean-Chinese Cuisine", description: "Discover authentic Korean-Chinese flavors in Schwalbach am Taunus. Reserve now or order takeaway.", images: ["http://img.b2bpic.net/free-photo/vertical-high-angle-shot-bowls-hummus-vegetable-soup-grey-surface_181624-25238.jpg"]
},
robots: {
index: true,
follow: true,
},
follow: true
}
};
export default function RootLayout({
children,
children
}: Readonly<{
children: React.ReactNode;
}>) {