Files
2a6a64b0-3d53-4e20-9f60-10d…/src/app/layout.tsx
2026-05-18 12:58:58 +00:00

55 lines
1.5 KiB
TypeScript

import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
export const metadata: Metadata = {
title: 'The Wardrobe Shillong | Premium Clothing Store in Police Bazar',
description: 'Visit The Wardrobe in Shillong for a curated selection of stylish and high-quality clothing. Your destination for premium fashion in the heart of Police Bazar.',
openGraph: {
"title": "The Wardrobe Shillong",
"description": "Premium apparel curated for Shillong.",
"type": "website",
"siteName": "The Wardrobe Shillong"
},
};
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}