25 lines
596 B
TypeScript
25 lines
596 B
TypeScript
// app/layout.tsx
|
|
import "./styles/globals.css";
|
|
import { Toaster } from "@/components/ui/toaster";
|
|
|
|
export const metadata = {
|
|
title: "MakeArmy",
|
|
description: "Laser Everything community tools",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
// Force dark theme (the simplest way to restore your previous look).
|
|
// If you later want system / toggle support, we can swap this for next-themes.
|
|
<html lang="en" className="dark" suppressHydrationWarning>
|
|
<body>
|
|
{children}
|
|
<Toaster />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|