Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-06 19:13:30 +00:00
2 changed files with 15 additions and 42 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<body className={inter.className}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1386,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -205,6 +205,10 @@ export default function LandingPage() {
]}
showRating={true}
animationType="slide-up"
buttons={[
{ text: "Start Reading", href: "#contact" }
]}
buttonAnimation="slide-up"
/>
</div>