From fed62088f1aa6ecc8540df76a17e06a9f68ba67c Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 21:08:31 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 45 +++++---------------------------------------- 1 file changed, 5 insertions(+), 40 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 03e00e5..671fc3b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,17 @@ 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"], -}); export const metadata: Metadata = { - title: "Golden Flame - Authentic Balkan Cuisine & Grilled Specialties", description: "Experience authentic Balkan cuisine at Golden Flame. Premium grilled meats, traditional chevapi, fresh seafood, and more. Order online or make a reservation today.", keywords: "Balkan restaurant, grilled meats, authentic cuisine, chevapi, schnitzel, steaks, seafood, Mediterranean food", openGraph: { - title: "Golden Flame - Authentic Balkan Cuisine", description: "Discover traditional Balkan flavors expertly grilled to perfection. Premium quality meats, seafood, and traditional dishes.", siteName: "Golden Flame", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/saj-made-from-vegetables-meat-charcoal_140725-3569.jpg", alt: "Golden Flame Balkan Restaurant" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Golden Flame - Authentic Balkan Restaurant", description: "Experience authentic Balkan cuisine. Grilled to perfection.", images: ["http://img.b2bpic.net/free-photo/saj-made-from-vegetables-meat-charcoal_140725-3569.jpg"] - } -}; + title: "Golden Flame - Authentic Balkan Cuisine", description: "Experience authentic Balkan cuisine grilled to perfection at Golden Flame Restaurant."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}