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

16 lines
369 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 = {
2026-08-13 01:58:09 +07:00
title: "Minikura | Infrastructure Console",
description: "Minecraft infrastructure control plane",
2026-02-13 15:52:13 +07:00
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
2024-09-21 13:28:02 +07:00
return (
<html lang="en">
2026-08-13 01:58:09 +07:00
<body>{children}</body>
2024-09-21 13:28:02 +07:00
</html>
);
}