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
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({