From 5af910cd64b3bf4a9288cd5b3ae49f132ee482db Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 19:32:57 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 48 ++++++++++------------------------------------ 1 file changed, 10 insertions(+), 38 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 02ca7f8..b5109b9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,24 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Raleway } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "All $milez Clothing - Street Fashion for Black Youth", description: "Authentic streetwear designed for Black youth and culture. Bold designs, premium quality, community-driven. Shop the All $milez collection now.", keywords: "streetwear, Black fashion, youth clothing, urban fashion, street style, sustainable fashion", metadataBase: new URL("https://example.com"), - openGraph: { - title: "All $milez Clothing - Street Fashion for Black Youth", description: "Authentic streetwear designed for Black youth and culture. Bold designs, premium quality, community-driven.", url: "https://example.com", siteName: "All $milez Clothing", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/shallow-focus-two-black-men-standing-against-red-wall_181624-56204.jpg", alt: "street wear fashion urban clothing display youth fashion collection dark aesthetic apparel"}, - ], - }, - twitter: { - card: "summary_large_image", title: "All $milez Clothing", description: "Street fashion for Black youth and everyone who embraces authentic style", images: ["http://img.b2bpic.net/free-photo/shallow-focus-two-black-men-standing-against-red-wall_181624-56204.jpg"], - }, -}; + title: "All $milez Clothing - Authentic Streetwear", description: "Street-inspired fashion for Black youth and everyone who embraces authentic style. Bold designs. Uncompromising quality. Pure culture."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +