arch-setup/files/Code - OSS/User/History/37c7874/YSAx.html

382 lines
No EOL
11 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Denode - Personal Server</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary-blue: #3b82f6;
--primary-blue-dark: #2563eb;
--bg-light: #ffffff;
--bg-dark: #0f172a;
--card-light: #f8fafc;
--card-dark: #1e293b;
--text-light: #1e293b;
--text-dark: #f8fafc;
--border-light: #e2e8f0;
--border-dark: #334155;
--shadow: rgba(0, 0, 0, 0.1);
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
transition: background-color 0.3s ease, color 0.3s ease;
min-height: 100vh;
display: flex;
flex-direction: column;
}
body.light {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: var(--text-light);
}
body.dark {
background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
color: var(--text-dark);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
flex: 1;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 3rem;
animation: slideDown 0.6s ease;
}
@keyframes slideDown {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.logo {
font-size: 2rem;
font-weight: bold;
background: linear-gradient(135deg, var(--primary-blue), #8b5cf6);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.theme-toggle {
background: rgba(255, 255, 255, 0.1);
border: 2px solid rgba(255, 255, 255, 0.2);
border-radius: 50px;
padding: 0.5rem 1rem;
cursor: pointer;
font-size: 1.2rem;
backdrop-filter: blur(10px);
transition: all 0.3s ease;
}
.theme-toggle:hover {
background: rgba(255, 255, 255, 0.2);
transform: scale(1.05);
}
.hero {
text-align: center;
margin-bottom: 4rem;
animation: fadeIn 0.8s ease;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
color: white;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.hero p {
font-size: 1.3rem;
color: rgba(255, 255, 255, 0.9);
margin-bottom: 2rem;
}
.status-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: rgba(34, 197, 94, 0.2);
border: 2px solid rgba(34, 197, 94, 0.5);
padding: 0.5rem 1.5rem;
border-radius: 50px;
color: #86efac;
font-weight: 600;
backdrop-filter: blur(10px);
}
.status-dot {
width: 10px;
height: 10px;
background: #22c55e;
border-radius: 50%;
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}
.service-card {
background: rgba(255, 255, 255, 0.1);
border: 2px solid rgba(255, 255, 255, 0.2);
border-radius: 20px;
padding: 2rem;
backdrop-filter: blur(10px);
transition: all 0.3s ease;
animation: fadeIn 1s ease;
animation-fill-mode: both;
}
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:hover {
transform: translateY(-5px);
background: rgba(255, 255, 255, 0.15);
border-color: var(--primary-blue);
box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}
.service-icon {
font-size: 3rem;
margin-bottom: 1rem;
}
.service-card h3 {
color: white;
margin-bottom: 0.5rem;
font-size: 1.5rem;
}
.service-card p {
color: rgba(255, 255, 255, 0.8);
margin-bottom: 1.5rem;
}
.service-link {
display: inline-block;
background: var(--primary-blue);
color: white;
padding: 0.7rem 1.5rem;
border-radius: 10px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
}
.service-link:hover {
background: var(--primary-blue-dark);
transform: scale(1.05);
}
.service-link.disabled {
background: rgba(255, 255, 255, 0.2);
cursor: not-allowed;
opacity: 0.6;
}
.service-link.disabled:hover {
transform: none;
}
.info-section {
background: rgba(255, 255, 255, 0.1);
border: 2px solid rgba(255, 255, 255, 0.2);
border-radius: 20px;
padding: 2rem;
backdrop-filter: blur(10px);
margin-bottom: 2rem;
animation: fadeIn 1.2s ease;
}
.info-section h2 {
color: white;
margin-bottom: 1rem;
font-size: 2rem;
}
.info-section p {
color: rgba(255, 255, 255, 0.9);
line-height: 1.6;
margin-bottom: 1rem;
}
.tech-stack {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-top: 1.5rem;
}
.tech-badge {
background: rgba(59, 130, 246, 0.2);
border: 2px solid var(--primary-blue);
padding: 0.5rem 1rem;
border-radius: 10px;
color: white;
font-weight: 600;
font-size: 0.9rem;
}
footer {
text-align: center;
padding: 2rem;
color: rgba(255, 255, 255, 0.7);
animation: fadeIn 1.4s ease;
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
.hero p {
font-size: 1.1rem;
}
.services-grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body class="dark">
<div class="container">
<header>
<div class="logo">🚀 denode.eu</div>
<button class="theme-toggle" onclick="toggleTheme()">
<span id="theme-icon">🌙</span>
</button>
</header>
<div class="hero">
<h1>Willkommen auf meinem Server</h1>
<p>Deine persönliche Self-Hosted Cloud & Services</p>
<div class="status-badge">
<span class="status-dot"></span>
Alle Systeme online
</div>
</div>
<div class="services-grid">
<div class="service-card">
<div class="service-icon">☁️</div>
<h3>Nextcloud</h3>
<p>Deine persönliche Cloud - Dateien, Kalender, Kontakte und mehr.</p>
<a href="https://nextcloud.denode.eu" class="service-link">Öffnen →</a>
</div>
<div class="service-card">
<div class="service-icon">📊</div>
<h3>Overleaf</h3>
<p>LaTeX Editor</p>
<a href="https://overleaf.denode.eu" class="service-link">Öffnen →</a>
</div>
<div class="service-card">
<div class="service-icon">🔧</div>
<h3>Notes</h3>
<p>Anleitungen und Notizen.</p>
<a href="https://notes.denode.eu" class="service-link">Öffnen →</a>
</div>
</div>
<div class="info-section">
<h2>📖 Über dieses Projekt</h2>
<p>
Dieser Server ist ein Self-Hosted Setup, das vollständige Kontrolle über deine Daten bietet.
Alle Services laufen auf eigenem Hardware zuhause, während ein Cloud-Server als sicherer
Proxy-Eingang dient.
</p>
<p>
<strong>Sicherheit:</strong> Wireguard-verschlüsselter Tunnel, Fail2Ban Schutz, UFW Firewall,
SSH Key-Only Authentication, automatische SSL-Zertifikate via Let's Encrypt.
</p>
<p>
<strong>Privatsphäre:</strong> Alle Daten bleiben physisch zuhause auf deiner Hardware.
Keine Cloud-Anbieter haben Zugriff auf deine persönlichen Informationen.
</p>
<div class="tech-stack">
<span class="tech-badge">🐳 Docker</span>
<span class="tech-badge">🔒 Wireguard</span>
<span class="tech-badge">⚡ Caddy</span>
<span class="tech-badge">🛡️ Fail2Ban</span>
<span class="tech-badge">🔥 UFW Firewall</span>
<span class="tech-badge">☁️ Nextcloud</span>
<span class="tech-badge">🔑 Vaultwarden</span>
<span class="tech-badge">📱 Tailscale</span>
</div>
</div>
</div>
<footer>
<p>© 2025 denode.eu - Self-Hosted with ❤️</p>
<p>Powered by Hetzner Cloud & Homeserver</p>
</footer>
<script>
function toggleTheme() {
const body = document.body;
const themeIcon = document.getElementById('theme-icon');
if (body.classList.contains('dark')) {
body.classList.remove('dark');
body.classList.add('light');
themeIcon.textContent = '☀️';
} else {
body.classList.remove('light');
body.classList.add('dark');
themeIcon.textContent = '🌙';
}
}
</script>
</body>
</html>