From 87d8d66017d9b632bbe367c0cd8517b1e0da4367 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 19:32:09 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1409 +------------------------------------------- 1 file changed, 7 insertions(+), 1402 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 30877e2..4b64aa6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1411 +1,17 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); +import "./styles/globals.css"; export const metadata: Metadata = { - title: "UNREST - Bold Artistic Urban Fashion", description: "Premium streetwear collection featuring artistic graphic tees, oversized baggy jeans, and bold long sleeves. Shop now.", keywords: "streetwear, urban fashion, graphic tees, baggy jeans, artistic clothing, bold fashion", metadataBase: new URL("https://streetwearco.com"), - alternates: { - canonical: "https://streetwearco.com"}, - openGraph: { - title: "UNREST - Bold Urban Fashion", description: "Discover bold, artistic streetwear designed for the urban collective. Limited edition pieces with premium quality.", url: "https://streetwearco.com", siteName: "UNREST", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/woman-grey-suit-enjoys-wind-street-new-york-city_8353-1582.jpg", alt: "UNREST Featured Collection"}, - ], - }, - twitter: { - card: "summary_large_image", title: "UNREST - Bold Urban Fashion", description: "Premium streetwear with artistic graphics and bold designs.", images: ["http://img.b2bpic.net/free-photo/woman-grey-suit-enjoys-wind-street-new-york-city_8353-1582.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "UNREST - Bold Streetwear", description: "Bold. Artistic. Unapologetic. Curated streetwear for the urban collective."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -