From d0eb6e1a8b1789e3e3bc52c6a89a9bb818e3f129 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 03:56:33 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 42 ++++++------------------------------------ 1 file changed, 6 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5345149..5b9b228 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,20 @@ import type { Metadata } from "next"; -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"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Nula | Streetwear & Vintage Fashion | Urban Drops & Authentic Pieces", description: "Discover curated streetwear collections and authentic vintage pieces. Shop limited drops, rare finds, and timeless essentials. Nula blends modern street style with vintage culture.", keywords: "streetwear, vintage fashion, urban clothing, limited drops, authentic vintage, street style", openGraph: { - title: "Nula - Where Streetwear Meets Vintage", description: "Curated urban fashion blending modern streetwear with authentic vintage pieces.", siteName: "Nula", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/view-hawaiian-shirts-hangers-with-wallet_23-2149366043.jpg", alt: "Nula streetwear and vintage collection"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Nula - Streetwear & Vintage Fashion", description: "Discover curated streetwear drops and authentic vintage pieces.", images: ["http://img.b2bpic.net/free-photo/view-hawaiian-shirts-hangers-with-wallet_23-2149366043.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Nula - Streetwear & Vintage Fashion", description: "Curated urban fashion blending modern streetwear aesthetics with authentic vintage pieces."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}