From a4576c3ebe5b13b965635bd3b1cfffe87f97d603 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 19:01:13 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 41f1e85..77ca2c6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ 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: "URBAN CULT - Authentic Limited Drop Streetwear", + description: "Premium streetwear brand featuring exclusive limited drops. Curated collections for urban culture leaders. Shop authentic contemporary fashion.", + keywords: "streetwear, limited drops, urban fashion, exclusive collections, contemporary apparel, brand drops, premium quality streetwear", + metadataBase: new URL("https://urbancult.com"), + alternates: { + canonical: "https://urbancult.com" + }, + openGraph: { + title: "URBAN CULT - Authentic Urban Style Limited Drops", + description: "Premium streetwear collections designed for those who lead trends. Exclusive releases, limited quantities, community-driven.", + url: "https://urbancult.com", + siteName: "URBAN CULT", + type: "website", + images: [ + { + url: "https://urbancult.com/og-image.jpg", + alt: "URBAN CULT Hero Image" + } + ] + }, + twitter: { + card: "summary_large_image", + title: "URBAN CULT - Limited Drop Streetwear", + description: "Authentic urban style for culture leaders. Exclusive drops, premium quality, community-first.", + images: ["https://urbancult.com/twitter-image.jpg"] + }, + robots: { + index: true, + follow: true + } +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}