Files
shadow-gunbuilder-ai-proto/app/layout.tsx
T
2025-12-08 11:41:01 -05:00

29 lines
634 B
TypeScript

// app/layout.tsx
import "./globals.css";
import type { ReactNode } from "react";
import { AuthProvider } from "@/context/AuthContext";
import { Banner } from "@/components/Banner";
export const metadata = {
title: {
default: "Battl Builders",
template: "%s — Battl Builders",
},
description: "Build rifles smarter, not harder.",
};
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang="en">
<body className="bg-black text-zinc-50">
<AuthProvider>
<Banner />
{children}
</AuthProvider>
</body>
</html>
);
}