78 lines
2.4 KiB
TypeScript
78 lines
2.4 KiB
TypeScript
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";
|
|
|
|
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<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body
|
|
className={`${halant.variable} ${mulish.variable} ${inter.variable} antialiased`}
|
|
>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
} |