From c3170534e79ce0a481d0e8b748ba02a77124cfdb Mon Sep 17 00:00:00 2001 From: "Alex Pooley (@zuedev)" Date: Tue, 28 Jul 2026 17:13:06 +0100 Subject: website-nextjs --- 174bg/website-nextjs/src/app/layout.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 174bg/website-nextjs/src/app/layout.js (limited to '174bg/website-nextjs/src/app/layout.js') diff --git a/174bg/website-nextjs/src/app/layout.js b/174bg/website-nextjs/src/app/layout.js new file mode 100644 index 0000000..c2b65f2 --- /dev/null +++ b/174bg/website-nextjs/src/app/layout.js @@ -0,0 +1,17 @@ +import "./layout.css"; + +export const metadata = { + title: "174th Battle Group - Star Citizen Military Organization", + description: `The "Red Right Hand" of the UEE`, + icons: { + icon: "/logo.png", + }, +}; + +export default function RootLayout({ children }) { + return ( + + {children} + + ); +} -- cgit v1.2.3