diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 92351fa..b43024f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,40 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } 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"], -}); +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/common/Tag"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); - export const metadata: Metadata = { - title: "Ahmaam Sports - Premium Athletic Wear", description: "Discover premium sportswear designed for champions. High-performance athletic wear with style and comfort.", keywords: "sportswear, athletic wear, sports apparel, performance clothing, athletic brands", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Ahmaam Sports - Premium Athletic Wear", description: "Discover premium sportswear designed for champions. High-performance athletic wear with style and comfort.", type: "website", siteName: "Ahmaam Sports", images: [ - { - url: "http://img.b2bpic.net/free-photo/midsection-view-teenage-boy-with-basketball_23-2147888355.jpg", alt: "Ahmaam Sports - Premium Athletic Wear"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Ahmaam Sports - Premium Athletic Wear", description: "Discover premium sportswear designed for champions. High-performance athletic wear with style and comfort.", images: ["http://img.b2bpic.net/free-photo/midsection-view-teenage-boy-with-basketball_23-2147888355.jpg"], - }, -}; + title: "Ahmaam Sports - Premium Athletic Wear", description: "Premium athletic wear designed for champions. Performance, style, and comfort in every piece."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - + +