diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index da5c9e7..a87396e 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,59 +1,24 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Manrope } from "next/font/google";
-import { DM_Sans } from "next/font/google";
+import "./styles/base.css";
+import "./styles/variables.css";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const manrope = Manrope({
- variable: "--font-manrope", subsets: ["latin"],
-});
-
-const dmSans = DM_Sans({
- variable: "--font-dm-sans", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "WildCraft - Free Online Nature Survival Game", description: "Play WildCraft, the ultimate free online survival game. Chop trees, build forts, fish, craft weapons, and hunt. Start your wilderness adventure today!", keywords: "survival game, nature game, crafting, building, free online game, wilderness, hunting, fishing", openGraph: {
- title: "WildCraft - Free Online Nature Survival Game", description: "Experience unlimited wilderness exploration, crafting, building, and survival in WildCraft.", siteName: "WildCraft", type: "website", images: [
- {
- url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AX8SFHdoBIfxOeckuVuSbkFw3z/a-breathtaking-wilderness-landscape-with-1772728275589-5233e3eb.png", alt: "WildCraft Wilderness Adventure"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "WildCraft - Free Survival Adventure", description: "Build, hunt, craft, and survive in the ultimate online nature game.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AX8SFHdoBIfxOeckuVuSbkFw3z/a-breathtaking-wilderness-landscape-with-1772728275589-5233e3eb.png"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "WildCraft - Free Online Survival Game", description: "Experience ultimate survival in WildCraft: explore wilderness, build shelters, craft weapons, hunt with crossbows, and survive in our free online nature survival game."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-