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

26 lines
650 B
TypeScript
Raw Normal View History

2026-02-13 15:52:13 +07:00
import type { Metadata } from "next";
2026-08-13 02:51:13 +07:00
import { ThemeProvider } from "@/components/theme-provider";
2026-02-13 15:52:13 +07:00
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 (
2026-08-13 02:51:13 +07:00
<html lang="en" suppressHydrationWarning>
<body>
<ThemeProvider
attribute="class"
defaultTheme="system"
enableSystem
disableTransitionOnChange
>
{children}
</ThemeProvider>
</body>
2024-09-21 13:28:02 +07:00
</html>
);
}