aboutsummaryrefslogtreecommitdiff
path: root/174bg/website-nextjs/src/app/layout.js
diff options
context:
space:
mode:
Diffstat (limited to '174bg/website-nextjs/src/app/layout.js')
-rw-r--r--174bg/website-nextjs/src/app/layout.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/174bg/website-nextjs/src/app/layout.js b/174bg/website-nextjs/src/app/layout.js
deleted file mode 100644
index c2b65f2..0000000
--- a/174bg/website-nextjs/src/app/layout.js
+++ /dev/null
@@ -1,17 +0,0 @@
-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>
- );
-}