From c0d1ca364809c73a613b1dce7f785968fcb9cc83 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 11:28:50 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 57 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a088e29..23bc62b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,63 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Source_Sans_3 } 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 { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({ variable: "--font-source-sans-3", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "ShopHub - Online Shopping in India | Electronics, Fashion, Home & More", + description: "Shop millions of products at ShopHub - India's fastest growing online marketplace. Get electronics, fashion, home essentials with guaranteed fast delivery & great deals.", + keywords: "online shopping India, ecommerce marketplace, buy products online, fast delivery, best prices, Indian marketplace", + metadataBase: new URL("https://shophub.com"), + alternates: { + canonical: "https://shophub.com", + }, + openGraph: { + title: "ShopHub - India's Online Marketplace", + description: "Shop millions of products at unbeatable prices with fast delivery across India.", + url: "https://shophub.com", + siteName: "ShopHub", + type: "website", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BA5Y0aqRlwTEUnUBGRsac7THqC/a-vibrant-e-commerce-hero-banner-showing-1773919676983-b0f87bcd.png", + alt: "ShopHub Marketplace", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "ShopHub - India's Online Marketplace", + description: "Shop millions of products with fast delivery and great deals.", + images: [ + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BA5Y0aqRlwTEUnUBGRsac7THqC/a-vibrant-e-commerce-hero-banner-showing-1773919676983-b0f87bcd.png", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +66,9 @@ export default function RootLayout({ return ( - + {children}