feat: html + simplecss landing page

This commit is contained in:
ae 2025-01-08 14:16:11 +02:00
commit 50ea19d755
Signed by: ae
GPG Key ID: 995EFD5C1B532B3E
9 changed files with 65 additions and 0 deletions

BIN
assets/apple-touch-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

BIN
assets/favicon-96x96.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

BIN
assets/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

3
assets/favicon.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 197 KiB

21
assets/manifest.json Normal file
View File

@ -0,0 +1,21 @@
{
"name": "Umbrella",
"short_name": "Umbrella",
"icons": [
{
"src": "/./assets/web-app-manifest-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/./assets/web-app-manifest-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
],
"theme_color": "#202c31",
"background_color": "#202c31",
"display": "standalone"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 299 KiB

40
index.html Normal file
View File

@ -0,0 +1,40 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Experimental privacy-centric project that aims to provide a random selection of open-source services free of charge">
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
<link rel="icon" type="image/png" href="/assets/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/assets/favicon.svg" />
<link rel="shortcut icon" href="/assets/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="Umbrella" />
<link rel="manifest" href="/assets/webmanifest.json" />
<title>Umbrella</title>
</head>
<body>
<main>
<h4>About</h4>
<p><code>Umbrella.haus</code> is an experimental, privacy-centric project that aims to provide a curated selection of open-source services free of charge. All services are hosted on a dedicated server located in Hetzner's Helsinki data center (<code>hel1</code>).</p>
<p>Feel free to send inquiries to <code>ben (at) uq.ci</code> (<a href="https://golfed.xyz/pgp.txt">PGP</a>) or <code>xmr.02</code> on Signal.</p>
<h4>Services</h4>
<p><a href="https://git.umbrella.haus">Gitea</a>: Forge software package for hosting software version control using Git.</p>
<p><a href="https://4.umbrella.haus">4get</a>: Proxy search engine that doesn't suck. Features a JavaScript-free interface and supports searching for websites, images, videos, news, and music.</p>
<p><a href="https://ip.umbrella.haus">EchoIP</a>: Simple IP address lookup service with support for ASN, country, and city lookups powered by the MaxMind GeoIP database.</p>
<p><a href="https://translate.umbrella.haus">LibreTranslate</a>: Machine translation API powered by the Argos Translate library.</p>
<p><a href="https://speed.umbrella.haus">LibreSpeed</a>: Extremely lightweight speedtest implemented in JavaScript (telemetry disabled). Utilizes XMLHttpRequest and Web Workers.</p>
<h4>Tor Relays</h4>
<ul>
<li><a href="https://metrics.torproject.org/rs.html#details/5D4E32974EF2A3C1DF6945CCA22F6E3DD4195F49">Caspian</a> <code>(5D4E32974EF2A3C1DF6945CCA22F6E3DD4195F49)</code></li>
</ul>
</main>
<footer>
<i><a href="https://umbrella.haus" target="_blank">umbrella.haus</a> // Last update: Jan. 8th 2025</i>
</footer>
</body>
</html>

1
simple.min.css vendored Normal file

File diff suppressed because one or more lines are too long