From 27b16466c898dfcb6320dfc1baaa7153c730abff Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 19:13:24 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 53 ++++++++++------------------------------------ 1 file changed, 11 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2776849..d2ad1c9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,24 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import './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 lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { - title: "Livland Chronicles - Medieval Nordic History Book", description: "Discover the legendary tales of Livland. An immersive exploration of medieval Nordic kingdoms with interactive 3D book, ancient maps, and rune translations.", keywords: "Livland, Nordic history, medieval kingdoms, Viking chronicles, historical manuscript, Scandinavian heritage", metadataBase: new URL("https://livlandchronicles.com"), - alternates: { - canonical: "https://livlandchronicles.com" - }, - openGraph: { - title: "Livland Chronicles - Medieval Nordic History", description: "Explore the untold stories of Livland's legendary medieval kingdom through interactive storytelling and historical research.", type: "website", siteName: "Livland Chronicles", url: "https://livlandchronicles.com", images: [{ - url: "http://img.b2bpic.net/free-vector/decorative-wedding-template-with-art-deco-concept_23-2147945430.jpg", alt: "Livland Chronicles Book Cover" - }] - }, - twitter: { - card: "summary_large_image", title: "Livland Chronicles", description: "Medieval Nordic history reimagined with modern interactive design", images: ["http://img.b2bpic.net/free-vector/decorative-wedding-template-with-art-deco-concept_23-2147945430.jpg"] - } + title: 'Livland Chronicles', + description: 'Journey through ancient Nordic tales, mystical landscapes, and forgotten kingdoms.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - + + {children} +