<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Homelab</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background: #0b0f19;
color: #ffffff;
display: flex;
flex-direction: column;
min-height: 100vh;
}
header {
padding: 20px;
text-align: center;
border-bottom: 1px solid #1f2937;
}
h1 {
margin: 0;
font-size: 28px;
}
main {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 40px 20px;
}
p {
max-width: 600px;
color: #9ca3af;
line-height: 1.5;
}
.buttons {
margin-top: 20px;
}
a {
display: inline-block;
margin: 10px;
padding: 12px 20px;
border-radius: 8px;
text-decoration: none;
color: white;
background: #2563eb;
}
a.secondary {
background: transparent;
border: 1px solid #374151;
}
footer {
text-align: center;
padding: 15px;
font-size: 12px;
color: #6b7280;
border-top: 1px solid #1f2937;
}
</style>
</head>
<body>
<header>
<h1>My Homelab</h1>
</header>
<main>
<h2>Welcome 👋</h2>
<p>
This is my personal homelab running self-hosted services, experiments,
and tools. Built for learning, testing, and privacy-focused infrastructure.
</p>
<div class="buttons">
<a href="#services">Services</a>
<a class="secondary" href="#about">About</a>
</div>
<section id="services" style="margin-top:60px;">
<h3>Services</h3>
<p>• Dashboard<br>• Media Server<br>• File Storage</p>
</section>
<section id="about" style="margin-top:40px;">
<h3>About</h3>
<p>
Self-hosted environment running on my own hardware with secure remote access.
</p>
</section>
</main>
<footer>
Powered by self-hosted infrastructure
</footer>
</body>
</html>