diff options
| author | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-07-28 19:23:44 +0100 |
|---|---|---|
| committer | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-07-28 19:23:44 +0100 |
| commit | 24a505d2f7c47b837d4ada2569576af594975fce (patch) | |
| tree | a9bf16ada4d323d6763293142f9723953079ac1d /174bg/website/src/app/layout.js | |
| parent | 02b47120435f7953c5578f70f541d98a718e12bc (diff) | |
| download | unnamed-group-24a505d2f7c47b837d4ada2569576af594975fce.tar unnamed-group-24a505d2f7c47b837d4ada2569576af594975fce.tar.gz unnamed-group-24a505d2f7c47b837d4ada2569576af594975fce.tar.bz2 unnamed-group-24a505d2f7c47b837d4ada2569576af594975fce.tar.xz unnamed-group-24a505d2f7c47b837d4ada2569576af594975fce.zip | |
website w/ docker!
Diffstat (limited to '174bg/website/src/app/layout.js')
| -rw-r--r-- | 174bg/website/src/app/layout.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/174bg/website/src/app/layout.js b/174bg/website/src/app/layout.js new file mode 100644 index 0000000..c2b65f2 --- /dev/null +++ b/174bg/website/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> + ); +} |
