From 1b263644ccca55e78518c76c2b09a4f38bda7a55 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 15:20:41 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 41 ++++++----------------------------------- 1 file changed, 6 insertions(+), 35 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cc90dbb..7ff2430 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,20 @@ import type { Metadata } from "next"; -import { Public_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 publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Premium Gym Equipment | IRON", description: "Professional-grade gym equipment for athletes. Barbells, kettlebells, and resistance training gear. Built to last, engineered for performance.", keywords: "gym equipment, barbells, kettlebells, fitness gear, strength training, workout equipment", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Premium Gym Equipment | IRON", description: "Professional-grade gym equipment for serious athletes. Transform your training today.", type: "website", siteName: "IRON", images: [ - { - url: "http://img.b2bpic.net/free-photo/black-dumbbells-with-different-weight_7502-8973.jpg", alt: "Premium gym equipment"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Premium Gym Equipment | IRON", description: "Professional-grade equipment for serious athletes.", images: ["http://img.b2bpic.net/free-photo/black-dumbbells-with-different-weight_7502-8973.jpg"], - }, -}; + title: "IRON - Premium Gym Equipment", description: "Professional-grade gym equipment engineered for maximum performance and durability."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}