Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-08 21:16:59 +00:00
2 changed files with 7 additions and 40 deletions

View File

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

View File

@@ -44,7 +44,7 @@ export default function LandingPage() {
description="The modern way to play modded Minecraft"
background={{ variant: "radial-gradient" }}
buttons={[
{ text: "Download Now", href: "#download" },
{ text: "Get Limen Free", href: "#download" },
{ text: "View on GitHub", href: "https://github.com" }
]}
buttonAnimation="slide-up"