From f6fa9609da2383e859ecd845112e3ceaf74a16b4 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 21:16:55 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 45 ++++++--------------------------------------- 1 file changed, 6 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8f104c5..cb86554 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,52 +1,20 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Limen | Next-Gen Minecraft Launcher", description: "The modern, fast, and secure Minecraft launcher with universal mod support for Forge, Fabric, Quilt, and NeoForge. Built with Rust for blazing performance.", keywords: "minecraft launcher, mod manager, forge, fabric, quilt, neoforge, gaming, modding", metadataBase: new URL("https://limen.dev"), - alternates: { - canonical: "https://limen.dev"}, - openGraph: { - title: "Limen - Next-Generation Minecraft Launcher", description: "Experience blazing-fast modded Minecraft with universal mod loader support and native Rust performance.", url: "https://limen.dev", siteName: "Limen", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AgBPqemLTwxYGyX4atAqFytMzJ/a-cutting-edge-minecraft-launcher-interf-1773004388688-5f10501e.png", alt: "Limen Launcher Dashboard"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "Limen - Next-Gen Minecraft Launcher", description: "The modern way to play modded Minecraft. Built with Tauri & Rust.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AgBPqemLTwxYGyX4atAqFytMzJ/a-cutting-edge-minecraft-launcher-interf-1773004388688-5f10501e.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Limen - Modern Minecraft Launcher", description: "The modern way to play modded Minecraft with Limen launcher"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}