aboutsummaryrefslogtreecommitdiff
path: root/projects/website/source
diff options
context:
space:
mode:
authorAlex Pooley (@zuedev) <zuedev@gmail.com>2026-05-11 16:22:24 +0100
committerAlex Pooley (@zuedev) <zuedev@gmail.com>2026-05-11 16:22:24 +0100
commitd4e548543c976e3de5c24eef8d5f26c22aa28457 (patch)
tree6bdaf8e2a9d953bd6ef6557a47033bcdf298f44c /projects/website/source
parent12903a4e6d9a676d1ad9e16d8162ccd103510a52 (diff)
downloadunnamed-group-d4e548543c976e3de5c24eef8d5f26c22aa28457.tar
unnamed-group-d4e548543c976e3de5c24eef8d5f26c22aa28457.tar.gz
unnamed-group-d4e548543c976e3de5c24eef8d5f26c22aa28457.tar.bz2
unnamed-group-d4e548543c976e3de5c24eef8d5f26c22aa28457.tar.xz
unnamed-group-d4e548543c976e3de5c24eef8d5f26c22aa28457.zip
add unnamed group website
Diffstat (limited to 'projects/website/source')
-rw-r--r--projects/website/source/_redirects6
-rw-r--r--projects/website/source/index.html110
-rw-r--r--projects/website/source/logo.gifbin0 -> 9965 bytes
3 files changed, 116 insertions, 0 deletions
diff --git a/projects/website/source/_redirects b/projects/website/source/_redirects
new file mode 100644
index 0000000..465acf0
--- /dev/null
+++ b/projects/website/source/_redirects
@@ -0,0 +1,6 @@
+/discord https://discord.com/invite/JnDGdHp9JV
+/github https://github.com/UnnamedGroupHub
+/gitlab https://gitlab.com/unnamed.group
+/twitter https://twitter.com/UnnamedGroupX
+/x https://x.com/UnnamedGroupX
+/stripe https://billing.stripe.com/p/login/14k5mideO5y15cQ8ww
diff --git a/projects/website/source/index.html b/projects/website/source/index.html
new file mode 100644
index 0000000..f504cb6
--- /dev/null
+++ b/projects/website/source/index.html
@@ -0,0 +1,110 @@
+<!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>
+ <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!"
+ />
+ <meta
+ name="keywords"
+ content="unnamed group, unnamed, group, games, gaming, community, discord, memes, fun, casual"
+ />
+ <link rel="icon" href="logo.gif" />
+ <style>
+ html {
+ background: black;
+ color: white;
+ font-family: monospace;
+ }
+
+ 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;
+ }
+
+ main p {
+ font-size: 1.5rem;
+ text-align: justify;
+ }
+
+ footer {
+ flex-direction: row;
+ justify-content: space-between;
+ }
+
+ a {
+ color: gold;
+ text-decoration: none;
+ }
+ </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!
+ </p>
+ </main>
+ <footer>
+ <a
+ href="https://find-and-update.company-information.service.gov.uk/company/14751183"
+ >
+ Est. 2016, Inc. 2023
+ </a>
+ <a href="mailto:hello@unnamed.group">hello@unnamed.group</a>
+ </footer>
+ </body>
+</html>
diff --git a/projects/website/source/logo.gif b/projects/website/source/logo.gif
new file mode 100644
index 0000000..b54fe8e
--- /dev/null
+++ b/projects/website/source/logo.gif
Binary files differ