From fc47a54a1b35b3e253ff452d5fe44ae38906a8e8 Mon Sep 17 00:00:00 2001 From: development Date: Sun, 11 Jan 2026 17:17:16 +0000 Subject: [PATCH 1/3] Update src/app/globals.css --- src/app/globals.css | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index 8f4ceba..94f3f80 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -4,13 +4,13 @@ /* Base units */ /* --vw is set by ThemeProvider */ - --background: #060000;; - --card: #1d0d0d;; - --foreground: #ffe6e6;; - --primary-cta: #ff3d4a;; - --secondary-cta: #1f0a0a;; - --accent: #7b2d2d;; - --background-accent: #b8111f;; + --background: #0a0a0a;; + --card: #1a1a1a;; + --foreground: #ffffffe6;; + --primary-cta: #e6e6e6;; + --secondary-cta: #1a1a1a;; + --accent: #d4af37;; + --background-accent: #2d2d2d;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); @@ -501,7 +501,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-inter-tight), sans-serif; + font-family: var(--font-cormorant-garamond), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -514,5 +514,5 @@ h3, h4, h5, h6 { - font-family: var(--font-inter-tight), sans-serif; + font-family: var(--font-cormorant-garamond), sans-serif; } \ No newline at end of file -- 2.49.1 From 6be31a8fde0eb4264ea1d3428455422af2f2acca Mon Sep 17 00:00:00 2001 From: development Date: Sun, 11 Jan 2026 17:17:17 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 829599d..f556663 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,32 +1,36 @@ import type { Metadata } from "next"; -import { Inter_Tight } from "next/font/google"; +import { Cormorant_Garamond, Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const cormorantGaramond = Cormorant_Garamond({ + variable: "--font-cormorant-garamond", subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); + +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Retro M5 Games - Vintage Sord M5 Cartridges", description: "Discover pristine Sord M5 game cartridges including Super Cobra. Authentic restored classics for collectors and gaming enthusiasts.", keywords: "Sord M5, vintage games, retro gaming, Super Cobra, arcade cartridge, collector", metadataBase: new URL("https://retrom5games.com"), + title: "M5 Creative Computer Games - Vintage Sord M5 Cartridges", description: "Discover pristine Sord M5 game cartridges and relive the golden age of retro gaming. Authentic restored classics for collectors and enthusiasts.", keywords: "Sord M5, vintage games, retro gaming, arcade cartridge, collector, M5 creative", metadataBase: new URL("https://m5creativegames.com"), alternates: { - canonical: "https://retrom5games.com" + canonical: "https://m5creativegames.com" }, robots: { index: true, follow: true }, openGraph: { - title: "Retro M5 Games - Legendary Vintage Cartridges", description: "Explore our curated collection of Sord M5 games. Restored to perfection for true retro gaming enthusiasts.", siteName: "Retro M5 Games", type: "website", images: [ + title: "M5 Creative Computer Games - Legendary Vintage Cartridges", description: "Explore our curated collection of Sord M5 games. Restored to perfection for true retro gaming enthusiasts.", siteName: "M5 Creative Computer Games", type: "website", images: [ { - url: "https://img.b2bpic.net/free-vector/retro-gaming-poster-template_23-2148780972.jpg", alt: "Super Cobra M5 Game" + url: "https://img.b2bpic.net/free-vector/retro-gaming-poster-template_23-2148780972.jpg", alt: "M5 Game Collection" } ] }, twitter: { - card: "summary_large_image", title: "Retro M5 Games - Vintage Gaming", description: "Discover authentic Sord M5 cartridges including the legendary Super Cobra.", images: ["https://img.b2bpic.net/free-vector/retro-gaming-poster-template_23-2148780972.jpg"] + card: "summary_large_image", title: "M5 Creative Computer Games - Vintage Gaming", description: "Discover authentic Sord M5 cartridges and legendary retro games.", images: ["https://img.b2bpic.net/free-vector/retro-gaming-poster-template_23-2148780972.jpg"] } }; @@ -39,7 +43,7 @@ export default function RootLayout({ {children} @@ -1265,4 +1269,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} -- 2.49.1 From bb7b4fbf81503bdc49067c110c75b683a4624dbd Mon Sep 17 00:00:00 2001 From: development Date: Sun, 11 Jan 2026 17:17:18 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 67d670b..5c4d90e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,4 @@ -"use client" +"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; @@ -26,7 +26,7 @@ export default function LandingPage() { > ); -} \ No newline at end of file +} -- 2.49.1