mirror of
https://github.com/YuzuZensai/Minikura.git
synced 2026-03-30 11:24:35 +00:00
16 lines
396 B
TypeScript
16 lines
396 B
TypeScript
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 className="antialiased">{children}</body>
|
|
</html>
|
|
);
|
|
}
|