Update src/app/layout.tsx
This commit is contained in:
@@ -1,24 +1,61 @@
|
||||
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";
|
||||
import { Manrope } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
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<{
|
||||
@@ -27,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${manrope.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user