// 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. {children} ); }