From 70e74b6665abfb8382e9b65d5749389be36f0194 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 01:45:21 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 +++++++++++----------------------------------- 1 file changed, 12 insertions(+), 38 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0ca8daf..50d828a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +1,25 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Public_Sans } from "next/font/google"; +import localFont from "next/font/local"; 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 publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); +const geistSans = localFont({ + src: "./fonts/GeistVF.woff2", variable: "--font-geist-sans", weight: "100 900"}); +const geistMono = localFont({ + src: "./fonts/GeistMonoVF.woff2", variable: "--font-geist-mono", weight: "100 900"}); export const metadata: Metadata = { - title: "ETNO HOUSE - Authentic Serbian Fast Food Restaurant", description: "Discover authentic Serbian cuisine at ETNO HOUSE in Zrenjanin. Award-winning traditional pastries, filled breads, pancakes, and toasts. 5.0 rating, open 7AM daily.", keywords: "Serbian food, fast food, Zrenjanin restaurant, lepinja, pancakes, traditional cuisine, authentic food", openGraph: { - title: "ETNO HOUSE - Authentic Serbian Fast Food", description: "Traditional Serbian pastries and filled breads made fresh daily. Perfect for breakfast, lunch, or snacks. 5.0 rated restaurant in Zrenjanin.", siteName: "ETNO HOUSE", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/top-view-delicious-breakfast-with-cinnamon-roll_23-2148543694.jpg", alt: "ETNO HOUSE Traditional Serbian Food"}, - ], - }, - twitter: { - card: "summary_large_image", title: "ETNO HOUSE - Authentic Serbian Cuisine", description: "Experience traditional Serbian food in Zrenjanin. Lepinja, pancakes, toasts and more. Open daily 7AM.", images: ["http://img.b2bpic.net/free-photo/top-view-delicious-breakfast-with-cinnamon-roll_23-2148543694.jpg"], - }, -}; + title: "ETNO HOUSE - Аутентична српска традиција", description: "Откройте аутентичну српску традицију у ETNO HOUSE. Специјализовани смо за традиционалне рецепте и пречане са пажњом."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +