71 lines
2.7 KiB
TypeScript
71 lines
2.7 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 { Inter_Tight } from "next/font/google";
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Musafirr - Premium Riding Gears & Accessories Store | Kolkata',
|
|
description: 'Musafirr offers the widest range of high-quality motorcycle riding gears & accessories in Barrackpore, Kolkata. Discover helmets, jackets, gloves, and more with unbeatable prices and unparalleled service.',
|
|
keywords: ["Musafirr, riding gear, motorcycle accessories, helmets, jackets, gloves, Kolkata, Barrackpore, bike store, premium gear"],
|
|
openGraph: {
|
|
"title": "Musafirr - Premium Riding Gears & Accessories Store | Kolkata",
|
|
"description": "Musafirr offers the widest range of high-quality motorcycle riding gears & accessories in Barrackpore, Kolkata. Discover helmets, jackets, gloves, and more with unbeatable prices and unparalleled service.",
|
|
"url": "https://www.musafirr.com",
|
|
"siteName": "Musafirr",
|
|
"images": [
|
|
{
|
|
"url": "http://img.b2bpic.net/free-photo/brutal-male-leather-jacket-holds-motorcycle-helmet-lights-up-cigarette-from-woman-arm_613910-12058.jpg",
|
|
"alt": "Motorcycle riding gear"
|
|
}
|
|
],
|
|
"type": "website"
|
|
},
|
|
twitter: {
|
|
"card": "summary_large_image",
|
|
"title": "Musafirr - Premium Riding Gears & Accessories Store | Kolkata",
|
|
"description": "Musafirr offers the widest range of high-quality motorcycle riding gears & accessories in Barrackpore, Kolkata. Discover helmets, jackets, gloves, and more with unbeatable prices and unparalleled service.",
|
|
"images": [
|
|
"http://img.b2bpic.net/free-photo/brutal-male-leather-jacket-holds-motorcycle-helmet-lights-up-cigarette-from-woman-arm_613910-12058.jpg"
|
|
]
|
|
},
|
|
robots: {
|
|
"index": true,
|
|
"follow": true
|
|
},
|
|
};
|
|
|
|
const interTight = Inter_Tight({
|
|
variable: "--font-inter-tight",
|
|
subsets: ["latin"],
|
|
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
|
});
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body className={`${interTight.variable} antialiased`}>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
}
|