makearmy-app/app/layout.tsx

26 lines
596 B
TypeScript
Raw Normal View History

// app/layout.tsx
2025-09-26 14:41:17 -04:00
import "./styles/globals.css";
import { Toaster } from "@/components/ui/toaster";
2025-09-22 10:37:53 -04:00
2025-09-26 15:19:19 -04:00
export const metadata = {
title: "MakeArmy",
2025-09-26 15:19:19 -04:00
description: "Laser Everything community tools",
};
2025-09-22 10:37:53 -04:00
export default function RootLayout({
children,
}: {
children: React.ReactNode;
2025-09-22 10:37:53 -04:00
}) {
return (
2025-09-26 15:19:19 -04:00
// 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>
2025-09-22 10:37:53 -04:00
</html>
);
2025-09-22 10:37:53 -04:00
}