From 2ee76834caef8dfd6a6ecf9d340d848aaaf03723 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 21:02:54 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1416 +------------------------------------------- 1 file changed, 11 insertions(+), 1405 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6c46541..ca5db84 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1420 +1,27 @@ 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 { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Payitaht - Authentic Uzbek Restaurant in Turkey", description: "Experience authentic Uzbek cuisine at Payitaht. Traditional hand-crafted dishes, warm hospitality, and Central Asian flavors in the heart of Turkey.", keywords: "Uzbek restaurant, Turkish restaurant, Central Asian cuisine, authentic food, Istanbul dining", openGraph: { - title: "Payitaht - Authentic Uzbek Cuisine", description: "Discover the flavors of Uzbekistan at Payitaht. Traditional recipes, premium ingredients, unforgettable dining experience.", type: "website", siteName: "Payitaht Restaurant", images: [ - { - url: "http://img.b2bpic.net/free-photo/hot-spring-rolls-served-with-sweet-chili-sauce_140725-5843.jpg", alt: "uzbek plov traditional rice dish authentic"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Payitaht - Authentic Uzbek Restaurant", description: "Experience authentic Uzbek cuisine with warm hospitality and traditional recipes.", images: ["http://img.b2bpic.net/free-photo/hot-spring-rolls-served-with-sweet-chili-sauce_140725-5843.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Payitaht - Authentic Uzbek Cuisine", description: "Experience the authentic flavors of Uzbekistan in the heart of Turkey."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -