Update src/app/layout.tsx

This commit is contained in:
2026-03-16 14:07:02 +00:00
parent 039ab01785
commit c48d1227c5

View File

@@ -1,28 +1,61 @@
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";
import { Mulish } from "next/font/google";
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
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: "Arihant Outlets Kudasan | Affordable Family Clothing Store",
description: "Gandhinagar's trusted clothing store for 35+ years. Men, women, kids & NRI collections. Affordable quality garments. Easy exchange policy. Call 070698 64103 or visit us today!",
keywords: "clothing store Gandhinagar, affordable family clothes Kudasan, men's wear women's wear kids clothing, Arihant Outlets, readymade garments, NRI collection",
metadataBase: new URL("https://arihanoutlets.com"),
alternates: {
canonical: "https://arihanoutlets.com",
},
openGraph: {
title: "Arihant Outlets Kudasan | Trusted Family Clothing Store",
description: "35+ years of quality & affordable clothing for the entire family. Visit us at Kudasan, Gandhinagar.",
url: "https://arihanoutlets.com",
siteName: "Arihant Outlets",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/person-shopping-second-hand-market_23-2149353683.jpg",
alt: "Arihant Outlets store",
},
],
},
twitter: {
card: "summary_large_image",
title: "Arihant Outlets Kudasan - Family Clothing Store",
description: "Trusted for 35+ years. Affordable quality clothing for men, women, kids & NRI collections. Call 070698 64103",
images: ["http://img.b2bpic.net/free-photo/person-shopping-second-hand-market_23-2149353683.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -31,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${mulish.variable} ${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${mulish.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}