From 180f2d6367f10d6ff5e28ecca87f53beed780442 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 14:32:55 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1413 +------------------------------------------- 1 file changed, 11 insertions(+), 1402 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 19b9fa6..181dd57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1417 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Yash Kumar Shoes | Premium Handcrafted Footwear", description: "Discover premium handcrafted shoes by Yash Kumar. Comfortable, stylish, and durable footwear for every occasion. Shop our exclusive collection today.", keywords: "premium shoes, handcrafted footwear, quality shoes, comfortable sneakers, luxury footwear", openGraph: { - title: "Yash Kumar Shoes | Premium Handcrafted Footwear", description: "Discover premium handcrafted shoes by Yash Kumar. Comfortable, stylish, and durable footwear for every occasion.", siteName: "Yash Kumar Shoes", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-vector/modern-sale-banner-with-product-description_1361-1259.jpg", alt: "Yash Kumar Shoes Collection"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Yash Kumar Shoes | Premium Handcrafted Footwear", description: "Discover premium handcrafted shoes by Yash Kumar. Comfortable, stylish, and durable footwear for every occasion.", images: ["http://img.b2bpic.net/free-vector/modern-sale-banner-with-product-description_1361-1259.jpg"], - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -