From 8adc40de101df9c24081be6f9958cf7ba740ff98 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 20:23:05 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8056970..79cb4bb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Mulish } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Mr. Pan | Asian Buffet Restaurant Magdeburg", description: "Premium Chinese & Asian buffet in Magdeburg. Fresh sushi, Mongolian BBQ, authentic Chinese dishes. €20-30pp. Reserve now or call +49 391 99091212", keywords: "chinese buffet magdeburg, asian restaurant magdeburg, sushi buffet magdeburg, mongolian bbq magdeburg, asian cuisine magdeburg, buffet restaurant", metadataBase: new URL("https://mrpan-md.com"), - alternates: { - canonical: "https://mrpan-md.com"}, - openGraph: { - title: "Mr. Pan | Asian Buffet Restaurant Magdeburg", description: "Experience authentic Asian buffet dining with fresh sushi, Mongolian BBQ, and premium Chinese dishes in Magdeburg", url: "https://mrpan-md.com", siteName: "Mr. Pan", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/closeup-delicious-meat-balls-fish-rolls-catered-rectangular-balls-with-sticks-snacks-variety-food-birthday-corporate-party-wedding-celebration_132075-13045.jpg", alt: "Mr. Pan Asian Buffet Restaurant"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Mr. Pan | Asian Buffet Restaurant Magdeburg", description: "Premium buffet with sushi, Mongolian BBQ & authentic Asian cuisine. €20-30pp. Magdeburg", images: [ - "http://img.b2bpic.net/free-photo/closeup-delicious-meat-balls-fish-rolls-catered-rectangular-balls-with-sticks-snacks-variety-food-birthday-corporate-party-wedding-celebration_132075-13045.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Mr. Pan - Asian Buffet Restaurant in Magdeburg", description: "All-you-can-eat premium buffet starting from €20 per person. Fresh sushi, Mongolian BBQ, authentic Chinese dishes, and gourmet desserts in Magdeburg, Germany."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}