From 1363a6b463b7ac4467869c10284f65ae2ac52a5d Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 02:33:07 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 50 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 43 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d247366..7dcf4c4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Inter_Tight } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Gangsta Chicken - Best Fried Chicken in Zrenjanin", description: "Fresh fried chicken, crispy fries, and fast takeaway service in Zrenjanin. Order by phone at 023 607269. Visit Saveznička 5.", keywords: "fried chicken Zrenjanin, chicken takeaway, crispy chicken, pomfrit Zrenjanin, chicken wings, chicken sandwich", openGraph: { - title: "Gangsta Chicken - Best Fried Chicken in Zrenjanin", description: "Fresh fried chicken, crispy fries, and fast takeaway service. Call 023 607269 to order.", siteName: "Gangsta Chicken", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/top-view-tasty-chicken-wings-with-greens-tomatoes-light-background-sandwich-meat-food-dinner-fries-burger-meal_140725-157008.jpg", alt: "Crispy golden fried chicken"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Gangsta Chicken - Best Fried Chicken in Zrenjanin", description: "Fresh fried chicken and crispy fries. Order now: 023 607269", images: ["http://img.b2bpic.net/free-photo/top-view-tasty-chicken-wings-with-greens-tomatoes-light-background-sandwich-meat-food-dinner-fries-burger-meal_140725-157008.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Gangsta Chicken", description: "Крцкава пилећа меса припремљена са нашим тајним начином пржења. Свеж, пикантан и задовољавајући укус."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}