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 (
-
-