diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cc4c2ca..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1418 +1,27 @@ import type { Metadata } from "next"; -import { Libre_Baskerville } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "SportGear - Premium Athletic Equipment & Gear", description: "Shop premium sports equipment and athletic gear from leading brands. Quality products for runners, fitness enthusiasts, and athletes.", keywords: "sports equipment, athletic gear, running shoes, fitness products, gym equipment, yoga mats", metadataBase: new URL("https://sportgear.com"), - alternates: { - canonical: "https://sportgear.com"}, - openGraph: { - title: "SportGear - Premium Athletic Equipment", description: "Discover quality sports gear trusted by athletes worldwide", url: "https://sportgear.com", siteName: "SportGear", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/medium-shot-man-stretching-leg_23-2149142344.jpg", alt: "SportGear Premium Athletic Equipment"}, - ], - }, - twitter: { - card: "summary_large_image", title: "SportGear - Premium Athletic Equipment", description: "Shop quality sports gear trusted by athletes worldwide", images: ["http://img.b2bpic.net/free-photo/medium-shot-man-stretching-leg_23-2149142344.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -