From bc4ebeadb612ad4dc85ad32519ff0c793d24b636 Mon Sep 17 00:00:00 2001
From: dominik martinez <dominikmartinez@pm.me>
Date: Tue, 25 Feb 2025 21:45:57 -0800
Subject: [PATCH] Some new stuff

---
 index.html    | 20 ++++++++++++++++++--
 wholesome.css |  6 ++++++
 2 files changed, 24 insertions(+), 2 deletions(-)
 create mode 100644 wholesome.css

diff --git a/index.html b/index.html
index 87ad93b..d474eb4 100644
--- a/index.html
+++ b/index.html
@@ -1,9 +1,25 @@
+<!DOCTYPE html>
 <html>
     <head>
 	<title>wholesome haus</title>
+	<link href="wholesome.css" rel="stylesheet" />
     </head>
-
     <body>
-	<p>more to come soon</p>
+	<h1>wholesome haus</h1>
+	<p>a community for hackers who want an alternative to the corporate driven technoscape that currently exists.</p>
+	<p>we have a few services that we run:</p>
+	<ul>
+	    <li>a <a href="https://matrix.org">matrix</a> server at chat.wholesome.haus</li>
+	    <li><a href="https://git.wholesome.haus">a forgejo git forge</a></li>
+	    <li>a lightweight <a href="https://maddy.email/">maddy email server</a> at mail.wholesome.haus</li>
+	</ul>
+	currently these are invite only services (so to not let things get too crazy), but please feel free to get in touch.
+
+	<h2>contact</h2>
+	if you feel compelled, reach out to dominik
+	<ul>
+	    <li><b>matrix</b>: @dom:chat.wholesome.haus</li>
+	    <li><b>email</b>: dom [at] mail.wholesome.haus</li>
+	</ul>
     </body>
 </html>
diff --git a/wholesome.css b/wholesome.css
new file mode 100644
index 0000000..9e3cce2
--- /dev/null
+++ b/wholesome.css
@@ -0,0 +1,6 @@
+body {
+    font-family: monospace;
+    background: #b3ffba;
+    max-width: 50em;
+    margin: auto;
+}