diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 42fa6ab..7c0a331 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 { DM_Sans } 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 { DM_Sans } 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 dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "BESET Sportswear - Custom Sports Jerseys & Kits", + description: "Premium custom sports jerseys and kits for cricket, football, kabaddi, and basketball. Professional manufacturing, quality fabrics, bulk orders available.", + keywords: "sports jerseys, custom sports kits, cricket uniforms, football jerseys, kabaddi kits, basketball uniforms, bulk order, team apparel", + metadataBase: new URL("https://www.besetsportswear.com"), + alternates: { + canonical: "https://www.besetsportswear.com", + }, + openGraph: { + title: "BESET Sportswear - Custom Sports Jerseys for Champions", + description: "Professional sportswear manufacturing with premium fabrics and unlimited customization options.", + url: "https://www.besetsportswear.com", + siteName: "BESET Sportswear", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/field-hockey-players-tournament-game_23-2149668562.jpg", + alt: "BESET Sportswear - Professional Sports Jersey", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "BESET Sportswear - Custom Sports Jerseys", + description: "Premium custom sports jerseys and kits for professional teams and organizations.", + images: [ + "http://img.b2bpic.net/free-photo/field-hockey-players-tournament-game_23-2149668562.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +66,9 @@ export default function RootLayout({ return ( - + {children}