build revisions and layout updates for toast

This commit is contained in:
makearmy 2025-09-26 14:31:18 -04:00
parent b341a3675e
commit 39235193e6
1116 changed files with 130517 additions and 12 deletions

View file

@ -1,19 +1,25 @@
import './styles/globals.css'
// app/layout.tsx
import type { Metadata } from "next";
import "./globals.css";
import { Toaster } from "@/components/ui/toaster";
export const metadata = {
title: 'LE-DB',
description: 'Laser Everything Community Database',
}
export const metadata: Metadata = {
title: "MakeArmy",
description: "Laser tooling & community utilities",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode
children: React.ReactNode;
}) {
return (
<html lang="en" className="dark">
<body>{children}</body>
<html lang="en" suppressHydrationWarning>
<body className="min-h-screen bg-background text-foreground antialiased">
{children}
{/* Shadcn toast portal */}
<Toaster />
</body>
</html>
)
);
}