aboutsummaryrefslogtreecommitdiff
path: root/projects/website/source/index.html
blob: fffe2731a2e2e1835274346e4bc602e2d4a1e47a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Unnamed Group</title>
    <meta
      name="description"
      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."
    />
    <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;
      }

      /* set default font */
      body {
        font-family: "Inter", sans-serif;
      }

      /* justify it all */
      * {
        text-align: justify;
      }

      /* style links */
      a {
        color: inherit;
        text-decoration: none;
      }

      a:hover {
        text-decoration: underline;
      }
    </style>
  </head>
  <body>
    <main>
      <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>

      <div
        id="community-links"
        style="
          display: flex;
          flex-direction: column;
          gap: 0.5rem;
          margin-top: 1rem;
        "
      >
        <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>