build revisions and layout updates for toast
This commit is contained in:
parent
b341a3675e
commit
39235193e6
1116 changed files with 130517 additions and 12 deletions
|
|
@ -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>
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue