From 193f16b0591097f3bd3324ae466d10523fb9b5df Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 18:03:13 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 47 +++++++++------------------------------------- 1 file changed, 9 insertions(+), 38 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index eb8d489..5a60315 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,23 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Poppins } 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 poppins = Poppins({ + subsets: ["latin"], + weight: ["400", "500", "600", "700", "800"], }); export const metadata: Metadata = { - title: "EnzoSports - Premium Soccer Shoes for Athletes", description: "Shop championship-grade soccer cleats designed for peak performance. Premium quality, advanced technology, and sustainable practices.", keywords: "soccer shoes, soccer cleats, athletic footwear, football boots, sports equipment, performance shoes", metadataBase: new URL("https://enzosports.com"), - alternates: { - canonical: "https://enzosports.com"}, - openGraph: { - title: "EnzoSports - Premium Soccer Shoes", description: "Experience championship-grade soccer shoes engineered for peak performance.", url: "https://enzosports.com", siteName: "EnzoSports", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/ice-skates-venue-still-life_23-2150577656.jpg", alt: "EnzoSports Premium Soccer Shoes"}, - ], - }, - twitter: { - card: "summary_large_image", title: "EnzoSports - Premium Soccer Shoes", description: "Championship-grade soccer cleats for peak performance", images: ["http://img.b2bpic.net/free-photo/ice-skates-venue-still-life_23-2150577656.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "EnzoSports - Premium Soccer Shoes", description: "Experience championship-grade soccer shoes engineered for peak performance. Designed by athletes, for athletes."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}