makearmy-app/app/layout.tsx

26 lines
571 B
TypeScript
Raw Normal View History

// app/layout.tsx
import type { Metadata } from "next";
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
export const metadata: Metadata = {
title: "MakeArmy",
description: "Laser tooling & community utilities",
};
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 (
<html lang="en" suppressHydrationWarning>
<body className="min-h-screen bg-background text-foreground antialiased">
{children}
{/* Shadcn toast portal */}
<Toaster />
</body>
2025-09-22 10:37:53 -04:00
</html>
);
2025-09-22 10:37:53 -04:00
}