From b3ca5b5efebcc5f4b4d69ec8f331847225a9b57a Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 06:15:52 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 59 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 47 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0f7096a..60c4de5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,60 @@ 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"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "Umbra - Premium Streetwear & Casual Apparel", + description: "Discover authentic streetwear and casual apparel at Umbra. Premium quality, bold designs, and timeless aesthetics for urban culture enthusiasts.", + keywords: "streetwear, casual apparel, urban fashion, hoodie, cargo pants, denim jacket, premium clothing", + metadataBase: new URL("https://umbra.com"), + alternates: { + canonical: "https://umbra.com", + }, + openGraph: { + title: "Umbra - Elevate Your Street Style", + description: "Premium streetwear collection designed for authenticity and urban culture. Shop hoodies, jackets, pants, and accessories.", + url: "https://umbra.com", + siteName: "Umbra", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/medium-shot-cool-man-with-electric-scooter_23-2149356776.jpg", + alt: "Umbra Premium Streetwear Collection", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Umbra - Premium Streetwear", + description: "Authentic streetwear designed for urban style. Shop the collection now.", + images: ["http://img.b2bpic.net/free-photo/medium-shot-cool-man-with-electric-scooter_23-2149356776.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -31,7 +64,9 @@ export default function RootLayout({ return ( - + {children}