Files
Minikura/apps/web/app/layout.tsx

16 lines
396 B
TypeScript
Raw Normal View History

2026-02-13 15:52:13 +07:00
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 }) {
2024-09-21 13:28:02 +07:00
return (
<html lang="en">
2026-02-13 15:52:13 +07:00
<body className="antialiased">{children}</body>
2024-09-21 13:28:02 +07:00
</html>
);
}