Update src/app/layout.tsx
This commit is contained in:
@@ -1,32 +1,36 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Inter_Tight } from "next/font/google";
|
import { Cormorant_Garamond, Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const interTight = Inter_Tight({
|
const cormorantGaramond = Cormorant_Garamond({
|
||||||
variable: "--font-inter-tight", subsets: ["latin"],
|
variable: "--font-cormorant-garamond", subsets: ["latin"],
|
||||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
weight: ["300", "400", "500", "600", "700"],
|
||||||
|
});
|
||||||
|
|
||||||
|
const inter = Inter({
|
||||||
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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: {
|
alternates: {
|
||||||
canonical: "https://retrom5games.com"
|
canonical: "https://m5creativegames.com"
|
||||||
},
|
},
|
||||||
robots: {
|
robots: {
|
||||||
index: true,
|
index: true,
|
||||||
follow: true
|
follow: true
|
||||||
},
|
},
|
||||||
openGraph: {
|
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: {
|
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({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body
|
||||||
className={`${interTight.variable} antialiased`}
|
className={`${cormorantGaramond.variable} ${inter.variable} antialiased`}
|
||||||
>
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
@@ -1265,4 +1269,4 @@ export default function RootLayout({
|
|||||||
</ServiceWrapper>
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user