aboutsummaryrefslogtreecommitdiff
path: root/174bg/website/src
diff options
context:
space:
mode:
authorAlex Pooley (@zuedev) <zuedev@gmail.com>2026-07-28 19:23:44 +0100
committerAlex Pooley (@zuedev) <zuedev@gmail.com>2026-07-28 19:23:44 +0100
commit24a505d2f7c47b837d4ada2569576af594975fce (patch)
treea9bf16ada4d323d6763293142f9723953079ac1d /174bg/website/src
parent02b47120435f7953c5578f70f541d98a718e12bc (diff)
downloadunnamed-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')
-rw-r--r--174bg/website/src/app/layout.css7
-rw-r--r--174bg/website/src/app/layout.js17
-rw-r--r--174bg/website/src/app/page.js60
3 files changed, 84 insertions, 0 deletions
diff --git a/174bg/website/src/app/layout.css b/174bg/website/src/app/layout.css
new file mode 100644
index 0000000..030d913
--- /dev/null
+++ b/174bg/website/src/app/layout.css
@@ -0,0 +1,7 @@
+@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");
+
+@import "tailwindcss";
+
+body {
+ font-family: "Sora";
+}
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>
+ );
+}
diff --git a/174bg/website/src/app/page.js b/174bg/website/src/app/page.js
new file mode 100644
index 0000000..ebd46cc
--- /dev/null
+++ b/174bg/website/src/app/page.js
@@ -0,0 +1,60 @@
+export default function Home() {
+ return (
+ <div className="flex flex-col gap-[1rem] p-[1rem] max-w-[666px] mx-auto">
+ <div id="header" className="flex flex-row gap-[1rem] items-center">
+ <img id="logo" src="logo.png" className="h-[100px]" />
+ <div className="ml-[1rem] flex flex-col justify-center h-[100px]">
+ <h1 className="m-0 font-bold text-2xl">174th Battle Group</h1>
+ <h2 className="text-[red] m-0 text-xl">
+ The "Red Right Hand" of the UEE
+ </h2>
+ </div>
+ </div>
+
+ <div className="flex flex-col gap-[1rem] max-w-[600px]">
+ <p>
+ We're a Star Citizen organisation focused on structured play,
+ small-team tactics, and distributed operations, aiming to provide a
+ rich and varied experience for our members.
+ </p>
+ <p>
+ Our bigger sessions are held on Saturdays around 17-18:00 UTC and
+ usually last 4 hours. We also run smaller weekday sessions using an
+ "on call" system. Members are expected to attend at least one bigger
+ session every two weeks, though real life comes first and we will work
+ around schedules.
+ </p>
+ <p>
+ We welcome anyone interested in joining, regardless of experience. New
+ members must be respectful, professional, and follow our code of
+ conduct. They should either know Star Citizen and its mechanics or be
+ willing to learn and improve.
+ </p>
+ <p>
+ If you're interested in joining the 174th Battle Group, reach out
+ through our Discord server below. We look forward to welcoming you and
+ working together toward our goals in the 'verse.
+ </p>
+ </div>
+
+ <div>
+ {[
+ ["Discord", "174bg.net/discord", "https://174bg.net/discord"],
+ ["Handbook", "174bg.net/handbook", "https://174bg.net/handbook"],
+ ["Manager", "174bg.net/manager", "https://174bg.net/manager"],
+ ].map(([name, display, url]) => (
+ <div key={name}>
+ <b>{name}:</b>{" "}
+ <a href={url} target="_blank" className="text-[red]">
+ {display}
+ </a>
+ </div>
+ ))}
+ </div>
+
+ <span className="absolute bottom-[1rem] right-[1rem] text-[0.8rem] opacity-33">
+ Expose. Exploit. Erase.
+ </span>
+ </div>
+ );
+}