136 lines
3.8 KiB
HTML
136 lines
3.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>navOS</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background: #0b0b0b;
|
|
color: #fdfdfd;
|
|
font-family: 'Share Tech Mono', monospace;
|
|
overflow-x: hidden;
|
|
}
|
|
header {
|
|
padding: 4rem 2rem;
|
|
text-align: center;
|
|
background-size: 100%;
|
|
background-position: 1rem 1rem 1rem 1rem;
|
|
background-repeat: no-repeat;
|
|
}
|
|
header::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 80%;
|
|
background-image: url('/banner');
|
|
background-size: cover;
|
|
background-position: center;
|
|
z-index: -1;
|
|
filter: blur(3px);
|
|
mask-image: linear-gradient(
|
|
to bottom,
|
|
rgba(0, 0, 0, 1) 0%, /* fully visible at top */
|
|
rgba(0, 0, 0, 1) 30%, /* stay visible until 80% */
|
|
rgba(0, 0, 0, 0) 50% /* fade to transparent at bottom */
|
|
);
|
|
-webkit-mask-image: linear-gradient(
|
|
to bottom,
|
|
rgba(0, 0, 0, 1) 0%,
|
|
rgba(0, 0, 0, 1) 30%,
|
|
rgba(0, 0, 0, 0) 50%
|
|
);
|
|
opacity: 1;
|
|
}
|
|
|
|
header h1 {
|
|
font-size: 4rem;
|
|
letter-spacing: 0.1rem;
|
|
margin: 0;
|
|
}
|
|
header p {
|
|
font-size: 1.2rem;
|
|
color: #fbfbfb;
|
|
margin-top: 1rem;
|
|
}
|
|
section {
|
|
max-width: 900px;
|
|
margin: 4rem auto;
|
|
padding: 0 2rem;
|
|
}
|
|
section h2 {
|
|
font-size: 2rem;
|
|
border-bottom: 1px solid #333;
|
|
padding-bottom: 0.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
section p {
|
|
line-height: 1.6;
|
|
color: #ccc;
|
|
}
|
|
.hero {
|
|
font-size: 1.5rem;
|
|
text-align: center;
|
|
font-style: italic;
|
|
color: #fbfbfb;
|
|
}
|
|
footer {
|
|
text-align: center;
|
|
padding: 4rem 2rem;
|
|
font-size: 0.9rem;
|
|
color: #666;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div style="text-align: center;">
|
|
<div style="display: inline-flex; align-items: center; gap: 0.5rem;">
|
|
<img src="https://git.hydrar.de/avatars/f989a042af87c3b43e4e1685e1beb9939cdfe6b27e201bd93edca3b31656872e?size=200" height="64">
|
|
<h1>navOS</h1>
|
|
</div>
|
|
</div>
|
|
|
|
<p>everyone is always connected</p>
|
|
</header>
|
|
|
|
<section>
|
|
<p class="hero">Welcome to the <a style="text-decoration: none;color: inherit;font-weight: bold;" href="https://git.hydrar.de/navos/-/packages/container/navos/latest"/>Wired</a>.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>What is navOS?</h2>
|
|
<p>navOS is an experimental operating system born from the aesthetic and philosophy of <em>Serial Experiments Lain</em>. It is designed to provide a unified extensible platform for every device.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>arch btw</h2>
|
|
<p><strong>you use arch btw.</strong> navOS is built on <a style="text-decoration: none;color: inherit;font-weight: bold;" href="https://archlinux.org/">Arch Linux</a> and the pacman ecosystem.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>i have two arms</h2>
|
|
<p>navOS supports multiple architectures, including <code>`x86_64`</code> and <code>`aarch64`</code>.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>alpha male</h2>
|
|
<p>navOS is in very alpha development. So the bugs are really aggressive for now.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>download</h2>
|
|
<p>You can download a install iso <b>--> <a style="text-decoration: none;color: inherit;font-weight: bold;" href="/iso/amd64"> here </a> <--</b> </p>
|
|
<p> Or you can run <code> `navinstall create-iso` if you have it installed. </code> </p>
|
|
</section>
|
|
|
|
<footer>
|
|
<p>Present day. Present time.</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|