From dd02155d3bddf0931ba1c195831868c4e22cfa84 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 09:36:05 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 56 +++++++++++++++++++++++++++++++++++++--------- 1 file changed, 45 insertions(+), 11 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a02c995..696b2d2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,60 @@ import type { Metadata } from "next"; +import { Mulish, Inter } from "next/font/google"; import { Halant } 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 mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); + +export const metadata: Metadata = { + title: "ShopHub - Premium Ecommerce Shopping", + description: "Discover premium products with fast shipping, secure checkout, and 24/7 customer support. Shop now and get exclusive member benefits.", + keywords: "ecommerce, online shopping, products, fast shipping, secure checkout", + metadataBase: new URL("https://shophub.com"), + alternates: { + canonical: "https://shophub.com", + }, + openGraph: { + title: "ShopHub - Your Premium Shopping Destination", + description: "Shop premium curated products with fast, free shipping and exceptional customer service.", + url: "https://shophub.com", + siteName: "ShopHub", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/friends-shopping-second-hand-market_23-2149353701.jpg", + alt: "ShopHub Featured Products", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "ShopHub - Premium Shopping", + description: "Discover premium curated products with fast shipping and excellent support.", + images: ["http://img.b2bpic.net/free-photo/friends-shopping-second-hand-market_23-2149353701.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +63,9 @@ export default function RootLayout({ return ( - + {children}