feat: initial prototype

This commit is contained in:
2026-02-13 15:52:13 +07:00
parent 134351b326
commit e8dbefde43
140 changed files with 12390 additions and 1369 deletions

View File

@@ -1,11 +1,15 @@
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "Minikura - Minecraft Server Manager",
description: "Manage your Minecraft servers with ease",
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body>{children}</body>
<body className="antialiased">{children}</body>
</html>
);
}