This commit is contained in:
2025-11-25 16:26:54 -05:00
commit 1c07310c44
114 changed files with 17175 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
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 (
<html lang="en">
<body>{children}</body>
</html>
);
}