import "./globals.css"; import type { ReactNode } from "react"; export const metadata = { title: "Gunbuilder Prototype | Shadow Standard", description: "Prototype AR-15 build tool by Shadow Standard.", }; export default function RootLayout({ children }: { children: ReactNode }) { return ( {children} ); }