initial commit

This commit is contained in:
rawleyfowler
2025-03-12 16:13:17 -05:00
commit 5dd670b6a4
5 changed files with 62 additions and 0 deletions

22
about.html Normal file
View File

@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<title>NetBSD!</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="netbsdclub.css" rel="stylesheet" />
</head>
<body>
<div class="hero">
<h1>About netbsd.club</h1>
<p style="width: 300px">
Netbsd.club is a collective of desert island tech-junkies. Desert island meaning
technology you'd like to have on a desert island. Obviously, we enjoy NetBSD, but we also
love Perl, C, Raku, Lisps, and much more.
</p>
<p>
Our goal is to build useful software for and around said technologies, and provide it to end users;
completely free of charge. You can see a list of our projects [ <a href="https://codeberg.org/netbsd-club">here</a> ].
</p>
</div>
</body>
</html>

BIN
favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

18
index.html Normal file
View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<title>NetBSD!</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="netbsdclub.css" rel="stylesheet" />
</head>
<body>
<div class="hero">
<img src="netbsd.png" alt="netbsd" />
<div class="links">
[ <a href="news">news</a> ] -
[ <a href="https://codeberg.org/netbsd-club">projects</a> ] -
[ <a href="about.html">about</a> ]
</div>
</div>
</body>
</html>

BIN
netbsd.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 460 B

22
netbsdclub.css Normal file
View File

@@ -0,0 +1,22 @@
body {
width: 100vw;
height: 100vh;
background-color: black;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
color: gray;
}
div.links a {
color: #bb0000;
}
h1, h2, h3, h4, h5 {
color: #bb0000;
}
p {
color: lightgray;
}