aboutsummaryrefslogtreecommitdiff
path: root/projects/website/source/index.html
diff options
context:
space:
mode:
authorAlex Pooley (@zuedev) <zuedev@gmail.com>2026-05-12 18:29:04 +0100
committerAlex Pooley (@zuedev) <zuedev@gmail.com>2026-05-12 18:29:04 +0100
commit5e95dd1f0756153eeb55d535c57f4a6f0b38e631 (patch)
tree9f5c562c27916bf4eb5d323e7f3b342ded31fd49 /projects/website/source/index.html
parentd3eeaf9a213f0be2376573b97b3f8e75a9ab142b (diff)
downloadunnamed-group-5e95dd1f0756153eeb55d535c57f4a6f0b38e631.tar
unnamed-group-5e95dd1f0756153eeb55d535c57f4a6f0b38e631.tar.gz
unnamed-group-5e95dd1f0756153eeb55d535c57f4a6f0b38e631.tar.bz2
unnamed-group-5e95dd1f0756153eeb55d535c57f4a6f0b38e631.tar.xz
unnamed-group-5e95dd1f0756153eeb55d535c57f4a6f0b38e631.zip
update website
Diffstat (limited to 'projects/website/source/index.html')
-rw-r--r--projects/website/source/index.html137
1 files changed, 57 insertions, 80 deletions
diff --git a/projects/website/source/index.html b/projects/website/source/index.html
index f504cb6..fffe273 100644
--- a/projects/website/source/index.html
+++ b/projects/website/source/index.html
@@ -1,110 +1,87 @@
-<!DOCTYPE html>
+<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>Unnamed Group | Games Should be Fun, not Work.</title>
+ <title>Unnamed Group</title>
<meta
name="description"
- content="We're a community of gamers who enjoy playing games together in a casual and fun manner. Come join the Discord to get involved!"
+ content="Unnamed Group is a non-profit organization dedicated to creating and supporting open-source gaming communities. Join us on Discord, explore our projects, and be part of our mission to foster creativity and collaboration in the gaming world."
/>
- <meta
- name="keywords"
- content="unnamed group, unnamed, group, games, gaming, community, discord, memes, fun, casual"
- />
- <link rel="icon" href="logo.gif" />
<style>
+ /* import inter font */
+ @import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
+
+ /* white on black */
html {
background: black;
color: white;
- font-family: monospace;
}
+ /* set default font */
body {
- min-height: 100vh;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- max-width: 400px;
- margin: 0 auto;
- }
-
- ::-webkit-scrollbar {
- display: none;
- }
-
- main,
- header,
- footer {
- display: flex;
- flex-direction: column;
- width: 100%;
- }
-
- header {
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- }
-
- #logo {
- height: 100px;
- width: 100px;
- }
-
- #socials {
- display: flex;
- flex-direction: row;
- justify-content: center;
- gap: 1rem;
- margin: 1rem 0;
- }
-
- #socials img {
- height: 50px;
- width: 50px;
+ font-family: "Inter", sans-serif;
}
- main p {
- font-size: 1.5rem;
+ /* justify it all */
+ * {
text-align: justify;
}
- footer {
- flex-direction: row;
- justify-content: space-between;
- }
-
+ /* style links */
a {
- color: gold;
+ color: inherit;
text-decoration: none;
}
+
+ a:hover {
+ text-decoration: underline;
+ }
</style>
</head>
<body>
- <header>
- <img id="logo" src="logo.gif" alt="Unnamed Group logo" />
- <div id="socials">
- <a href="https://unnamed.group/discord">
- <img src="https://cdn.simpleicons.org/discord" />
- </a>
- </div>
- </header>
<main>
- <p>
- We're a community of gamers who enjoy playing games together in a casual
- and fun manner. Come join the Discord to get involved!
+ <div>
+ <h1 style="margin: 0">Unnamed Group</h1>
+ <h2 style="margin: 0">Non-profit open-source gaming communities</h2>
+ </div>
+
+ <p style="max-width: 600px; margin-top: 1rem">
+ Unnamed Group is a non-profit organization dedicated to creating and
+ supporting open-source gaming communities. Join us on Discord, explore
+ our projects, and be part of our mission to foster creativity and
+ collaboration in the gaming world.
</p>
- </main>
- <footer>
- <a
- href="https://find-and-update.company-information.service.gov.uk/company/14751183"
+
+ <div
+ id="community-links"
+ style="
+ display: flex;
+ flex-direction: column;
+ gap: 0.5rem;
+ margin-top: 1rem;
+ "
>
- Est. 2016, Inc. 2023
- </a>
- <a href="mailto:hello@unnamed.group">hello@unnamed.group</a>
- </footer>
+ <a
+ href="https://unnamed.group/discord"
+ style="background: #5865f2; padding: 0.5rem"
+ >
+ Unnamed Group Discord
+ </a>
+ <a
+ href="https://uagpmc.com"
+ style="background: #90b477; padding: 0.5rem"
+ >
+ <b>UAG:</b> Our Arma 3 community focused on cooperative gameplay.
+ </a>
+ <a
+ href="https://red-right-hand.unnamed.group"
+ style="background: #d40404; padding: 0.5rem"
+ >
+ <b>Red Right Hand:</b> Star Citizen organisation bringing
+ player-driven events to the 'verse.
+ </a>
+ </div>
+ </main>
</body>
</html>