From 96b7b86e2ae3212ab8a68589bb399a841d3b1e87 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 04:21:52 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1415 +------------------------------------------- 1 file changed, 6 insertions(+), 1409 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 43471ac..a24f405 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1422 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } 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 lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "NewRacksStylez - Premium Hoodies, Shirts & Pants", description: "Shop NewRacksStylez for quality hoodies ($55), shirts ($30), and pants ($65-$70). Premium urban fashion at unbeatable prices. Free shipping on orders over $100.", keywords: "hoodies, shirts, pants, streetwear, urban fashion, casual wear, quality apparel", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "NewRacksStylez - Premium Urban Fashion", description: "Discover our exclusive collection of premium hoodies, shirts, and pants for the modern lifestyle.", type: "website", siteName: "NewRacksStylez", images: [ - { - url: "http://img.b2bpic.net/free-photo/full-length-view-dreamy-woman-trench-coat_197531-19711.jpg", alt: "NewRacksStylez premium fashion collection"}, - ], - }, - twitter: { - card: "summary_large_image", title: "NewRacksStylez - Premium Urban Fashion", description: "Shop quality hoodies, shirts, and pants. Premium apparel at affordable prices.", images: ["http://img.b2bpic.net/free-photo/full-length-view-dreamy-woman-trench-coat_197531-19711.jpg"], - }, -}; + title: "NewRacksStylez - Premium Christian Urban Fashion", description: "Discover exclusive faith-inspired hoodies, shirts, and pants designed for the modern Christian lifestyle. Quality crafted apparel at unbeatable prices."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -