diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e0fea80..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito } 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 halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "MahdiPlay - Game Reviews, Ratings & Recommendations", description: "Discover honest game reviews, ratings, and recommendations for Windows and Android games. Find your next favorite game on MahdiPlay.", keywords: "game reviews, game ratings, Windows games, Android games, gaming recommendations, best games", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "MahdiPlay - Your Gaming Guide", description: "Explore comprehensive game reviews and ratings for Windows and Android platforms", type: "website", siteName: "MahdiPlay", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeTnnCRGzxY49fCExeTMTvRV8O/a-stunning-action-game-screenshot-showin-1772952736883-29ed9608.png", alt: "MahdiPlay Gaming Guide"}, - ], - }, - twitter: { - card: "summary_large_image", title: "MahdiPlay - Game Reviews & Ratings", description: "Your source for honest game reviews and recommendations across all platforms", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeTnnCRGzxY49fCExeTMTvRV8O/a-stunning-action-game-screenshot-showin-1772952736883-29ed9608.png"], - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +