aboutsummaryrefslogtreecommitdiff
path: root/174bg/website-nextjs/src/app/layout.js
diff options
context:
space:
mode:
authorAlex Pooley (@zuedev) <zuedev@gmail.com>2026-07-28 17:13:06 +0100
committerAlex Pooley (@zuedev) <zuedev@gmail.com>2026-07-28 17:13:06 +0100
commitc3170534e79ce0a481d0e8b748ba02a77124cfdb (patch)
treee10cfd2c2a17995bcb7449c0c4bbb2bd03c11789 /174bg/website-nextjs/src/app/layout.js
parent150d8cca4c6b1c8e5d129b69c6b283535bbb1333 (diff)
downloadunnamed-group-c3170534e79ce0a481d0e8b748ba02a77124cfdb.tar
unnamed-group-c3170534e79ce0a481d0e8b748ba02a77124cfdb.tar.gz
unnamed-group-c3170534e79ce0a481d0e8b748ba02a77124cfdb.tar.bz2
unnamed-group-c3170534e79ce0a481d0e8b748ba02a77124cfdb.tar.xz
unnamed-group-c3170534e79ce0a481d0e8b748ba02a77124cfdb.zip
website-nextjs
Diffstat (limited to '174bg/website-nextjs/src/app/layout.js')
-rw-r--r--174bg/website-nextjs/src/app/layout.js17
1 files changed, 17 insertions, 0 deletions
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 (
+ <html lang="en">
+ <body>{children}</body>
+ </html>
+ );
+}