From 86f48d1f2950ec58494c8f8f3c34e974aa0efb3d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 20:29:52 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 48 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a5e6bfc..202c726 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito_Sans } 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 nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "SWN Streetwear | Premium Hoodies & T-Shirts", description: "Discover authentic urban streetwear. Shop premium hoodies and t-shirts from SWN. Quality crafted pieces for modern style.", keywords: "streetwear, hoodies, t-shirts, urban fashion, premium apparel, SWN", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "SWN Streetwear | Premium Hoodies & T-Shirts", description: "Discover authentic urban streetwear. Shop premium hoodies and t-shirts from SWN.", type: "website", siteName: "SWN Streetwear", images: [ - { - url: "http://img.b2bpic.net/free-photo/shallow-focus-two-black-men-standing-against-red-wall_181624-56204.jpg", alt: "SWN Streetwear Collection"}, - ], - }, - twitter: { - card: "summary_large_image", title: "SWN Streetwear | Premium Hoodies & T-Shirts", description: "Discover authentic urban streetwear. Shop premium hoodies and t-shirts.", images: [ - "http://img.b2bpic.net/free-photo/shallow-focus-two-black-men-standing-against-red-wall_181624-56204.jpg"], - }, -}; + title: "SWN Streetwear", description: "Premium urban fashion and streetwear"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}