diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8d2418c..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,2802 +0,0 @@ -import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "GamerPC - High-Performance Gaming Computers & Custom Builds", - description: "Buy premium gaming PCs with RTX 4090, RTX 4080, and RTX 4070. Custom builds, esports systems, and streaming rigs. Fast shipping & lifetime support.", - keywords: "gaming PC, gaming laptop, RTX 4090, gaming desktop, custom PC build, esports PC, gaming computer", - metadataBase: new URL("https://gamerpc.com"), - alternates: { - canonical: "https://gamerpc.com", - }, - openGraph: { - title: "GamerPC - Ultimate Gaming PC Performance", - description: "Experience ultimate gaming with high-performance RTX gaming PCs. Custom builds, fast shipping, and expert support.", - url: "https://gamerpc.com", - siteName: "GamerPC", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-woman-repairing-computer-chips_23-2150880936.jpg", - alt: "GamerPC - High-end gaming computer", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "GamerPC - Premium Gaming Computers", - description: "Unleash your gaming potential with our top-tier gaming PCs. RTX 4090 performance, custom builds, expert support.", - images: ["http://img.b2bpic.net/free-photo/close-up-woman-repairing-computer-chips_23-2150880936.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -