Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 22:32:26 +00:00
2 changed files with 9 additions and 46 deletions

View File

@@ -1,57 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Topps Trade Center | Video Games, Trading Cards & Retro Gaming in Benton Harbor", description: "Topps Trade Center: Your gaming hub in Benton Harbor, MI since 1983. Buy, sell, trade video games, trading cards, retro systems & more. Visit today!", keywords: "video game store Benton Harbor, retro game store Michigan, trading card store, sell video games Michigan, buy retro games, gaming store near me", metadataBase: new URL("https://toppstradecenter.com"),
alternates: {
canonical: "https://toppstradecenter.com"},
robots: {
index: true,
follow: true,
},
openGraph: {
title: "Topps Trade Center | Your Gaming Hub Since 1983", description: "The region's largest video game exchange. Buy, trade, sell games and trading cards in Benton Harbor, MI.", url: "https://toppstradecenter.com", siteName: "Topps Trade Center", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/retro-vhs-packaging-indoors_23-2150172383.jpg", alt: "Topps Trade Center Gaming Collection"},
],
},
twitter: {
card: "summary_large_image", title: "Topps Trade Center | Your Gaming Hub Since 1983", description: "The region's largest video game exchange. Buy, trade, sell games and trading cards.", images: ["http://img.b2bpic.net/free-photo/retro-vhs-packaging-indoors_23-2150172383.jpg"],
},
};
title: "Topps Trade Center - Gaming Hub in Benton Harbor, MI", description: "Buy, trade, and discover retro and modern games at Topps Trade Center in Benton Harbor, Michigan. Largest selection of video games, trading cards, and gaming accessories."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -10,7 +10,7 @@ import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { Gamepad2, Store, Heart, Package, Repeat2, Zap, Users, ShoppingBag, Sparkles, Phone } from 'lucide-react';
import { Gamepad2, Store, Heart, Package, Repeat2, Zap, Users, ShoppingBag, Sparkles, Phone, MapPin, Clock } from 'lucide-react';
const navItems = [
{ name: "About", id: "about" },
@@ -132,6 +132,7 @@ export default function LandingPage() {
buttons={[
{ text: "Call Now: 269-925-3010", href: "tel:269-925-3010" },
{ text: "Get Directions", href: "https://maps.google.com/?q=1609+Mall+Drive+Benton+Harbor+MI+49022" },
{ text: "1609 Mall Drive, Benton Harbor, MI 49022", href: "https://maps.google.com/?q=1609+Mall+Drive+Benton+Harbor+MI+49022" },
]}
buttonAnimation="slide-up"
useInvertedBackground={false}