From 693ccc274ea260e558ab7272fd685ed12f98c38c Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 09:27:23 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 49 +++++----------------------------------------- 1 file changed, 5 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 44fc45a..a9bb1c7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,16 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Lato } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); export const metadata: Metadata = { - title: "Premium MMA Hybrid Gloves | APEX Professional Equipment", description: "High-performance MMA hybrid gloves engineered for striking and grappling. Trusted by professional fighters worldwide. Premium leather, superior wrist support.", keywords: "MMA gloves, hybrid gloves, boxing gloves, combat sports, training equipment", metadataBase: new URL("https://apexmmagloves.com"), - alternates: { - canonical: "https://apexmmagloves.com"}, - openGraph: { - title: "Premium MMA Hybrid Gloves | APEX", description: "Professional-grade MMA hybrid gloves for fighters who demand performance", type: "website", siteName: "APEX MMA", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-boxing-gloves_23-2147601742.jpg", alt: "APEX Premium MMA Hybrid Gloves"}, - ], - }, - twitter: { - card: "summary_large_image", title: "APEX Premium MMA Hybrid Gloves", description: "Professional MMA equipment trusted by champions", images: ["http://img.b2bpic.net/free-photo/close-up-boxing-gloves_23-2147601742.jpg"], - }, -}; + title: "APEX MMA - Premium Hybrid Gloves", description: "Professional-grade MMA hybrid gloves with pre-curved fingers, triple-layer EVA foam, and Y pattern emboss design."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}