From c48d1227c57e5f4a60f28afda3ff4d3f4541fd19 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 14:07:02 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 53 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 44 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a02c995..7d4b7ad 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}