From 5d8dd1613ff2167a05358af798d7850162f593ee Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 07:52:28 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1421 +------------------------------------------- 1 file changed, 18 insertions(+), 1403 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 818a2de..1f3c347 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1422 +1,38 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; +import { Lora } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { ServiceWrapper } from "@/components/wrapper/ServiceWrapper"; +import { Tag } from "@/components/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 lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], +const lora = Lora({ + variable: "--font-lora", subsets: ["latin", "cyrillic"], + weight: ["400", "500", "600", "700"], }); export const metadata: Metadata = { - title: "Special Coffee & Tea - Premium Coffee in Tashkent | Open 24 Hours", description: "Authentic Italian-style coffee, fresh pastries, and 24-hour service in Tashkent. Call +998 95 571 91 91 for directions and menu.", keywords: "coffee shop Tashkent, best coffee near me, 24 hour cafe, Italian espresso, premium coffee Tashkent", metadataBase: new URL("https://specialcoffeetea.uz"), - alternates: { - canonical: "https://specialcoffeetea.uz"}, - openGraph: { - title: "Special Coffee & Tea - Premium Coffee in Tashkent", description: "Authentic Italian-style coffee and fresh sweets. Open 24 hours. Visit us today!", url: "https://specialcoffeetea.uz", siteName: "Special Coffee & Tea", images: [ - { - url: "http://img.b2bpic.net/free-photo/girl-with-phone-night_1303-5741.jpg", alt: "Italian espresso coffee shop interior warm lighting"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "Special Coffee & Tea - Premium Coffee 24/7", description: "Authentic Italian espresso and fresh pastries in Tashkent. Call now!", images: ["http://img.b2bpic.net/free-photo/girl-with-phone-night_1303-5741.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Special Coffee & Tea", description: "Premium coffee and tea services"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - + + {children} - + +