From 7928d9a8297e4f0d5fa33ca6a0994ce445a877b1 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 20:09:02 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 1438 +------------------------------------------- 1 file changed, 15 insertions(+), 1423 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 062933f..59dfc15 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1438 +1,31 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Raleway } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const raleway = Raleway({ - variable: "--font-raleway", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "ArcadeHub - Arcade Games Marketplace | Buy & Sell", - description: "Buy and sell authentic arcade games on ArcadeHub. Connect with collectors and sellers worldwide. Secure listings with seller verification, detailed specs, and ratings.", - keywords: "arcade games, marketplace, buy arcade games, sell arcade games, vintage arcade, arcade collectors, classic gaming", - metadataBase: new URL("https://arcadehub.com"), - alternates: { - canonical: "https://arcadehub.com", - }, - openGraph: { - title: "ArcadeHub - Arcade Games Marketplace", - description: "Discover and trade arcade games in our vibrant community marketplace. Secure, verified sellers and authentic listings.", - url: "https://arcadehub.com", - siteName: "ArcadeHub", - images: [ - { - url: "http://img.b2bpic.net/free-photo/smiling-young-people-playing-table-football-while-indoors_146671-15220.jpg", - alt: "ArcadeHub Marketplace", - }, - ], - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "ArcadeHub - Arcade Games Marketplace", - description: "Buy and sell authentic arcade games with verified sellers and secure transactions.", - images: ["http://img.b2bpic.net/free-photo/smiling-young-people-playing-table-football-while-indoors_146671-15220.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "ArcadeHub - Arcade Game Marketplace", description: "Discover, buy, and sell authentic arcade games on ArcadeHub"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - + + {children}