Update src/app/layout.tsx

This commit is contained in:
2026-03-16 12:51:03 +00:00
parent 572d9d3b60
commit 4bf2111ae9

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${mulish.variable} ${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +80,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}