From 39c3927a649044d740beef3c77c83827306c870d Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 05:03:35 +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 845c069..0f16642 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1415 +1,20 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "PrimeStep - Premium Shoes for Every Step", description: "Shop premium athletic and casual footwear crafted for comfort and style. Fast shipping, 30-day returns, and expert customer support.", keywords: "premium shoes, athletic footwear, casual sneakers, comfortable shoes, shoe store", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "PrimeStep - Premium Shoes Collection", description: "Discover expertly crafted footwear designed for your every need", type: "website", siteName: "PrimeStep", images: [ - { - url: "http://img.b2bpic.net/free-photo/man-choosing-foot-wear-mens-store_1303-30827.jpg", alt: "Premium shoes collection"}, - ], - }, - twitter: { - card: "summary_large_image", title: "PrimeStep - Premium Shoes", description: "Shop premium footwear for comfort and style", images: ["http://img.b2bpic.net/free-photo/man-choosing-foot-wear-mens-store_1303-30827.jpg"], - }, -}; + title: "PrimeStep - Premium Footwear", description: "Discover premium footwear designed for comfort, style, and performance."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -