16 lines
368 B
TypeScript
16 lines
368 B
TypeScript
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>
|
|
);
|
|
}
|