🎨 style: establish console design system

This commit is contained in:
2026-08-13 02:19:26 +07:00
parent 5e88c660dc
commit 3a09f0b571
26 changed files with 840 additions and 269 deletions
+3 -3
View File
@@ -2,14 +2,14 @@ import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "Minikura - Minecraft Server Manager",
description: "Manage your Minecraft servers with ease",
title: "Minikura | Infrastructure Console",
description: "Minecraft infrastructure control plane",
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body className="antialiased">{children}</body>
<body>{children}</body>
</html>
);
}