168 lines
No EOL
4.5 KiB
HTML
168 lines
No EOL
4.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>denode.eu</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
|
|
background: #0f172a;
|
|
min-height: 100vh;
|
|
color: #e2e8f0;
|
|
padding: 60px 20px;
|
|
}
|
|
|
|
.container {
|
|
max-width: 900px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
header {
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2em;
|
|
color: #94a3b8;
|
|
font-weight: 500;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 0.95em;
|
|
color: #64748b;
|
|
}
|
|
|
|
.services-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
|
|
gap: 20px;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.service-card {
|
|
background: #1e293b;
|
|
border: 1px solid #334155;
|
|
border-radius: 8px;
|
|
padding: 24px;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.service-card:hover {
|
|
border-color: #475569;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.service-card h3 {
|
|
color: #e2e8f0;
|
|
font-size: 1.1em;
|
|
margin-bottom: 10px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.service-card p {
|
|
color: #94a3b8;
|
|
line-height: 1.5;
|
|
margin-bottom: 18px;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.service-card .button {
|
|
display: inline-block;
|
|
background: #334155;
|
|
color: #e2e8f0;
|
|
padding: 8px 16px;
|
|
border-radius: 6px;
|
|
text-decoration: none;
|
|
font-size: 0.9em;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.service-card .button:hover {
|
|
background: #475569;
|
|
}
|
|
|
|
.status {
|
|
background: #1e293b;
|
|
border: 1px solid #334155;
|
|
border-radius: 8px;
|
|
padding: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.status h2 {
|
|
color: #94a3b8;
|
|
font-size: 0.95em;
|
|
margin-bottom: 8px;
|
|
font-weight: 500;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
.status p {
|
|
color: #64748b;
|
|
line-height: 1.6;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
body {
|
|
padding: 40px 20px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.6em;
|
|
}
|
|
|
|
.services-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<header>
|
|
<h1>denode.eu</h1>
|
|
<p class="subtitle">Self-hosted services running on private infrastructure</p>
|
|
</header>
|
|
|
|
<div class="services-grid">
|
|
<div class="service-card">
|
|
<h3>Nextcloud</h3>
|
|
<p>Personal cloud solution for file storage, calendar management, and contact synchronization across devices</p>
|
|
<a href="https://nextcloud.denode.eu" class="button">Open</a>
|
|
</div>
|
|
|
|
<div class="service-card">
|
|
<h3>BookStack</h3>
|
|
<p>Knowledge management platform for documentation, notes, and structured wiki pages</p>
|
|
<a href="https://notes.denode.eu" class="button">Open</a>
|
|
</div>
|
|
|
|
<div class="service-card">
|
|
<h3>Overleaf</h3>
|
|
<p>Browser-based LaTeX editor for scientific documents and presentations</p>
|
|
<a href="https://overleaf.denode.eu" class="button">Open</a>
|
|
</div>
|
|
<div class="service-card">
|
|
<h3>Monitoring</h3>
|
|
<p>Monitoring for this server</p>
|
|
<a href="https://monitoring.denode.eu" class="button">Open</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="status">
|
|
<h2>Planned</h2>
|
|
<p>Future additions include monitoring systems for infrastructure oversight and additional productivity tools also everything that you can host youself lol _wus_</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |