From cfaffd3a7c95a23096cebd4bf6fca30bd5ab4d4f Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 19:50:13 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1417 +------------------------------------------- 1 file changed, 6 insertions(+), 1411 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a9cde18..c909abb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } 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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Hungarikum Bisztró | Authentic Hungarian Cuisine in Budapest", description: "Experience authentic Hungarian gourmet in the heart of Budapest. Traditional recipes, warm atmosphere, and genuine hospitality at Hungarikum Bisztró.", keywords: "Hungarian restaurant, Budapest dining, traditional Hungarian cuisine, authentic goulash, paprikash, duck leg, Hungarian food, Budapest restaurant", metadataBase: new URL("https://hungarikumbisztro.hu"), - alternates: { - canonical: "https://hungarikumbisztro.hu"}, - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Hungarikum Bisztró | Authentic Hungarian Restaurant Budapest", description: "Taste authentic Hungarian cuisine in a cozy traditional atmosphere. Reserve your table today.", url: "https://hungarikumbisztro.hu", siteName: "Hungarikum Bisztró", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/beautiful-thanksgiving-meal-concept_23-2148629583.jpg", alt: "Hungarikum Bisztró - Authentic Hungarian Restaurant"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Hungarikum Bisztró | Authentic Hungarian Cuisine", description: "Experience authentic Hungarian gourmet in Budapest's heart", images: ["http://img.b2bpic.net/free-photo/beautiful-thanksgiving-meal-concept_23-2148629583.jpg"], - }, -}; + title: "Hungarikum Bisztró | Authentic Hungarian Cuisine in Budapest", description: "Experience authentic Hungarian gourmet at Hungarikum Bisztró. Traditional recipes, warm atmosphere, and genuine hospitality in the heart of Budapest."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -