diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9376d25..f26945e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Public_Sans } 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 publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "TechVault - Premium Gaming & Tech Store", description: "Discover cutting-edge gaming PCs, peripherals, and tech equipment at TechVault. Premium quality products for gamers and tech enthusiasts.", keywords: "gaming PC, gaming peripherals, gaming mouse, mechanical keyboard, graphics card, gaming monitor", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "TechVault - Premium Gaming & Tech", description: "Shop the latest gaming PCs, peripherals, and technology with TechVault. Premium quality for serious gamers.", type: "website", siteName: "TechVault", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZoqQ1nuR4E6VJXdZc4600cDY1/a-sleek-modern-gaming-pc-setup-on-a-desk-1772809823513-0938b250.png", alt: "Gaming Setup"}, - ], - }, - twitter: { - card: "summary_large_image", title: "TechVault - Premium Gaming & Tech", description: "Shop gaming PCs, peripherals, and cutting-edge technology", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZoqQ1nuR4E6VJXdZc4600cDY1/a-sleek-modern-gaming-pc-setup-on-a-desk-1772809823513-0938b250.png"], - }, -}; + title: "TechVault - Premium Gaming & Tech", description: "Discover cutting-edge gaming peripherals, powerful computers, and innovative tech"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +