Files
aebdb2a1-aacd-4dac-bafd-87f…/src/app/layout.tsx
2026-03-12 07:08:09 +00:00

81 lines
2.4 KiB
TypeScript

import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } 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 inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Saikrupa Footwear Daman - Best Shoes in Town",
description: "Shop quality and affordable shoes for men, women, and kids at Saikrupa Footwear Daman. 4.0 rating. Open daily until 8 PM.",
keywords: "footwear shop Daman, shoe store Daman, best shoes Daman, affordable footwear, men's shoes, women's shoes, kids shoes",
metadataBase: new URL("https://saikrupafootwear.com"),
alternates: {
canonical: "https://saikrupafootwear.com",
},
openGraph: {
title: "Saikrupa Footwear Daman - Quality Shoes at Best Prices",
description: "Discover affordable, stylish shoes for the whole family. Shop now at Daman's trusted footwear store.",
url: "https://saikrupafootwear.com",
siteName: "Saikrupa Footwear",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/legs-female-shoppers_23-2147688683.jpg",
alt: "Saikrupa Footwear Store",
},
],
},
twitter: {
card: "summary_large_image",
title: "Saikrupa Footwear - Best Shoes in Daman",
description: "Quality footwear for men, women, and kids. Affordable prices, trusted by locals.",
images: ["http://img.b2bpic.net/free-photo/legs-female-shoppers_23-2147688683.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}