Update src/app/layout.tsx

This commit is contained in:
2026-03-14 07:07:24 +00:00
parent 0537e6998d
commit 32a2beb815

View File

@@ -1,18 +1,22 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Poppins } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Poppins } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const poppins = Poppins({
variable: "--font-poppins",
@@ -20,6 +24,23 @@ const poppins = Poppins({
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"]
});
export const metadata: Metadata = {
title: "Zombie Apocalypse Camp Management System",
description: "Advanced survivor camp management platform with real-time resource tracking, expedition coordination, and AI-assisted admission analysis.",
keywords: "survival management, apocalypse system, camp coordination, resource tracking, expedition planner",
openGraph: {
title: "Survivor Camp Command Center",
description: "Manage survivor settlements with advanced resource tracking and tactical coordination.",
siteName: "Survivors Command",
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Apocalypse Survival Management System",
description: "Real-time camp management with AI-assisted decisions",
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -28,7 +49,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${poppins.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -40,4 +63,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}