Update src/app/layout.tsx

This commit is contained in:
2026-03-14 08:00:53 +00:00
parent 6ce5e8a798
commit 0dae5df276

View File

@@ -1,28 +1,58 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Mulish } from "next/font/google";
import { Inter } 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";
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "KaalChhaya Pictures - Premium Luxury Retail",
description: "Discover curated collections of high-quality luxury products for modern professionals. Experience seamless shopping with premium items and exceptional service.",
keywords: "luxury retail, premium products, online shopping, designer items, curated collections, high-quality goods",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "KaalChhaya Pictures - Premium Luxury Retail",
description: "Handpicked collections of premium, high-quality products designed for discerning customers.",
type: "website",
siteName: "KaalChhaya Pictures",
images: [
{
url: "http://img.b2bpic.net/free-photo/vertical-decorative-vases-with-protea-billbergia-flowers-with-chinese-folding-fans_181624-37950.jpg",
alt: "KaalChhaya Pictures Premium Collection",
},
],
},
twitter: {
card: "summary_large_image",
title: "KaalChhaya Pictures - Premium Luxury Retail",
description: "Discover luxury products curated for modern professionals.",
images: [
"http://img.b2bpic.net/free-photo/vertical-decorative-vases-with-protea-billbergia-flowers-with-chinese-folding-fans_181624-37950.jpg",
],
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -31,7 +61,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${mulish.variable} ${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${mulish.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +75,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}