From 4bf2111ae989eab0933ff833e13edec8fb460bc0 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 12:51:03 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 61 +++++++++++++++++++++++++++++++++++++--------- 1 file changed, 49 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a02c995..3a15e49 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,62 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Mulish } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Mulish } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "ARDINO Coffee - Fresh Coffee Open 24 Hours in Tashkent", + description: "Experience premium specialty coffee at ARDINO Coffee in Tashkent. Open 24/7. Quality coffee, expert baristas, welcoming atmosphere. Call or visit today!", + keywords: "coffee shop Tashkent, 24 hour coffee Tashkent, best coffee Tashkent, ARDINO Coffee, specialty coffee", + metadataBase: new URL("https://ardino-coffee.com"), + alternates: { + canonical: "https://ardino-coffee.com", + }, + openGraph: { + title: "ARDINO Coffee - Tashkent's 24-Hour Café", + description: "Premium specialty coffee, expert baristas, welcoming atmosphere. Open 24/7 at Zargarlik ko'chasi 16, Tashkent.", + url: "https://ardino-coffee.com", + siteName: "ARDINO Coffee", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/beautiful-retro-luxury-light-lamp-decor-glowing_1253-1445.jpg", + alt: "ARDINO Coffee - Premium fresh coffee", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "ARDINO Coffee - Fresh Coffee 24/7 in Tashkent", + description: "Discover the best specialty coffee in Tashkent. Open around the clock with expert baristas.", + images: [ + "http://img.b2bpic.net/free-photo/beautiful-retro-luxury-light-lamp-decor-glowing_1253-1445.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -31,7 +66,9 @@ export default function RootLayout({ return ( - + {children}