From b5f6d44b0e2dacd45afeb4daa626b4a3bf91722c Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 08:22:30 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 49 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 76b2a10..69cc70f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "SoleStep - Premium Shoes for Every Occasion", description: "Discover premium footwear for running, casual wear, hiking, and formal occasions. Quality shoes with free shipping and 30-day returns.", keywords: "shoes, sneakers, running shoes, casual shoes, hiking boots, formal shoes, footwear, online shoe store", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "SoleStep - Premium Shoes for Every Occasion", description: "Discover premium footwear for every lifestyle. Quality shoes with excellent customer service.", siteName: "SoleStep", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-male-hands-tying-up-sport-shoes_1262-4792.jpg", alt: "Premium shoe collection from SoleStep"}, - ], - }, - twitter: { - card: "summary_large_image", title: "SoleStep - Premium Shoes", description: "Discover our premium shoe collection with fast shipping and 30-day returns.", images: ["http://img.b2bpic.net/free-photo/close-up-male-hands-tying-up-sport-shoes_1262-4792.jpg"], - }, -}; + title: "SoleStep - Premium Shoes for Every Occasion", description: "Discover premium shoes designed for comfort, style, and performance. From athletic to casual, find your ideal pair today."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}