From bbc8c0adb02cad9df09d407f397b12f603d4a35a Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 20:02:57 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1408 +------------------------------------------- 1 file changed, 6 insertions(+), 1402 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 483320d..e1ec8ce 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1415 +1,20 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "NYC Kicks | Premium Authentic Sneaker Shop New York", description: "Discover NYC's premier destination for authentic, limited-edition sneakers. Expert curation, fast shipping, and guaranteed authenticity. Shop exclusive kicks today.", keywords: "sneakers, limited edition, authentic kicks, NYC sneaker shop, Air Max, retro sneakers, street style, sneaker drops", robots: { - index: true, - follow: true, - }, - openGraph: { - type: "website", siteName: "NYC Kicks", title: "NYC Kicks | Premium Authentic Sneaker Shop", description: "Discover NYC's most exclusive sneaker collection with authentic authentication and expert curation.", images: [ - { - url: "http://img.b2bpic.net/free-photo/white-sneakers-closeup-men-s-apparel-summer-fashion-beach-photoshoot_53876-101216.jpg", alt: "NYC Kicks Premium Sneaker Collection"}, - ], - }, - twitter: { - card: "summary_large_image", title: "NYC Kicks | Premium Authentic Sneakers", description: "Shop exclusive sneaker drops and limited editions in NYC", images: ["http://img.b2bpic.net/free-photo/white-sneakers-closeup-men-s-apparel-summer-fashion-beach-photoshoot_53876-101216.jpg"], - }, -}; + title: "NYC Kicks | Premium Sneaker Collection", description: "Discover NYC's most exclusive sneaker collection. Premium limited editions and authentic footwear."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -