lemonlink/Dummy Sites/index.html

456 lines
16 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Homelab Dashboard</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--bg-primary: #0f0f1a;
--bg-secondary: #16162a;
--bg-card: #1e1e3a;
--bg-card-hover: #252550;
--text-primary: #ffffff;
--text-secondary: #a0a0b8;
--accent: #6366f1;
--accent-hover: #818cf8;
--border: #2a2a4a;
--shadow: rgba(0, 0, 0, 0.4);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background: var(--bg-primary);
color: var(--text-primary);
min-height: 100vh;
line-height: 1.6;
}
.container {
max-width: 1400px;
margin: 0 auto;
padding: 2rem;
}
header {
text-align: center;
padding: 3rem 0;
background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
border-bottom: 1px solid var(--border);
}
header h1 {
font-size: 3rem;
font-weight: 700;
background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 0.5rem;
}
header p {
color: var(--text-secondary);
font-size: 1.1rem;
}
.status-bar {
display: flex;
justify-content: center;
gap: 2rem;
margin-top: 1.5rem;
flex-wrap: wrap;
}
.status-item {
display: flex;
align-items: center;
gap: 0.5rem;
color: var(--text-secondary);
font-size: 0.9rem;
}
.status-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: #22c55e;
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
.section {
margin: 3rem 0;
}
.section-title {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 1.5rem;
display: flex;
align-items: center;
gap: 0.75rem;
}
.section-title svg {
width: 24px;
height: 24px;
color: var(--accent);
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 1.5rem;
}
.service-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 16px;
padding: 1.5rem;
transition: all 0.3s ease;
cursor: pointer;
position: relative;
overflow: hidden;
text-decoration: none;
display: block;
}
.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, var(--accent), var(--accent-hover));
transform: scaleX(0);
transition: transform 0.3s ease;
}
.service-card:hover {
transform: translateY(-4px);
background: var(--bg-card-hover);
box-shadow: 0 20px 40px var(--shadow);
}
.service-card:hover::before {
transform: scaleX(1);
}
.service-header {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1rem;
}
.service-icon {
width: 48px;
height: 48px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
}
.service-icon.homarr { background: rgba(99, 102, 241, 0.2); }
.service-icon.netdata { background: rgba(34, 197, 94, 0.2); }
.service-icon.nextcloud { background: rgba(59, 130, 246, 0.2); }
.service-icon.portainer { background: rgba(20, 184, 166, 0.2); }
.service-icon.pihole { background: rgba(249, 115, 22, 0.2); }
.service-icon.plex { background: rgba(168, 85, 247, 0.2); }
.service-icon.jellyfin { background: rgba(99, 179, 237, 0.2); }
.service-icon.proxmox { background: rgba(239, 68, 68, 0.2); }
.service-icon.traefik { background: rgba(6, 182, 212, 0.2); }
.service-icon.homeassistant { background: rgba(251, 191, 36, 0.2); }
.service-icon.nas { background: rgba(107, 114, 128, 0.2); }
.service-icon.vaultwarden { background: rgba(236, 72, 153, 0.2); }
.service-info h3 {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 0.25rem;
color: var(--text-primary);
}
.service-status {
font-size: 0.75rem;
color: #22c55e;
display: flex;
align-items: center;
gap: 0.25rem;
}
.service-description {
color: var(--text-secondary);
font-size: 0.9rem;
line-height: 1.5;
}
.service-meta {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 1rem;
padding-top: 1rem;
border-top: 1px solid var(--border);
}
.service-url {
font-size: 0.8rem;
color: var(--accent);
font-family: monospace;
}
.arrow-icon {
width: 20px;
height: 20px;
color: var(--text-secondary);
transition: all 0.3s ease;
}
.service-card:hover .arrow-icon {
color: var(--accent);
transform: translateX(4px);
}
footer {
text-align: center;
padding: 3rem 0;
color: var(--text-secondary);
border-top: 1px solid var(--border);
margin-top: 3rem;
}
footer a {
color: var(--accent);
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
header h1 {
font-size: 2rem;
}
.services-grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>🏠 My Homelab</h1>
<p>Central dashboard for all internal services</p>
<div class="status-bar">
<div class="status-item">
<span class="status-dot"></span>
<span>All Systems Operational</span>
</div>
<div class="status-item">
<span>🖥️ 12 Services</span>
</div>
<div class="status-item">
<span>⏱️ Uptime: 45 days</span>
</div>
</div>
</div>
</header>
<main class="container">
<!-- Dashboards Section -->
<section class="section">
<h2 class="section-title">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<rect x="3" y="3" width="7" height="7" rx="1"/>
<rect x="14" y="3" width="7" height="7" rx="1"/>
<rect x="14" y="14" width="7" height="7" rx="1"/>
<rect x="3" y="14" width="7" height="7" rx="1"/>
</svg>
Dashboards & Monitoring
</h2>
<div class="services-grid">
<a href="services/netdata.html" class="service-card">
<div class="service-header">
<div class="service-icon netdata">📊</div>
<div class="service-info">
<h3>Netdata</h3>
<span class="service-status">● Running</span>
</div>
</div>
<p class="service-description">Real-time performance monitoring and health monitoring for systems.</p>
<div class="service-meta">
<span class="service-url">netdata.local:19999</span>
<svg class="arrow-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M5 12h14M12 5l7 7-7 7"/>
</svg>
</div>
</a>
</div>
</section>
<!-- Storage & Cloud Section -->
<section class="section">
<h2 class="section-title">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z"/>
</svg>
Storage & Cloud
</h2>
<div class="services-grid">
<a href="services/nextcloud.html" class="service-card">
<div class="service-header">
<div class="service-icon nextcloud">☁️</div>
<div class="service-info">
<h3>Nextcloud</h3>
<span class="service-status">● Running</span>
</div>
</div>
<p class="service-description">Self-hosted file sync and share solution with office integration.</p>
<div class="service-meta">
<span class="service-url">cloud.lemonlink.eu</span>
<svg class="arrow-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M5 12h14M12 5l7 7-7 7"/>
</svg>
</div>
</a>
</div>
</section>
<!-- Media Section -->
<section class="section">
<h2 class="section-title">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<polygon points="5 3 19 12 5 21 5 3"/>
</svg>
Media & Entertainment
</h2>
<div class="services-grid">
<a href="services/plex.html" class="service-card">
<div class="service-header">
<div class="service-icon plex">🎬</div>
<div class="service-info">
<h3>Plex</h3>
<span class="service-status">● Running</span>
</div>
</div>
<p class="service-description">Personal media server for movies, TV shows, music, and photos.</p>
<div class="service-meta">
<span class="service-url">plex.lemonlink.eu</span>
<svg class="arrow-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M5 12h14M12 5l7 7-7 7"/>
</svg>
</div>
</a>
<a href="services/jellyfin.html" class="service-card">
<div class="service-header">
<div class="service-icon jellyfin">🎭</div>
<div class="service-info">
<h3>Jellyfin</h3>
<span class="service-status">● Running</span>
</div>
</div>
<p class="service-description">Free Software Media System for managing and streaming media.</p>
<div class="service-meta">
<span class="service-url">jellyfin.lemonlink.eu</span>
<svg class="arrow-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M5 12h14M12 5l7 7-7 7"/>
</svg>
</div>
</a>
</div>
</section>
<!-- Infrastructure Section -->
<section class="section">
<h2 class="section-title">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5"/>
</svg>
Infrastructure & Management
</h2>
<div class="services-grid">
<a href="services/portainer.html" class="service-card">
<div class="service-header">
<div class="service-icon portainer">🐳</div>
<div class="service-info">
<h3>Portainer</h3>
<span class="service-status">● Running</span>
</div>
</div>
<p class="service-description">Container management UI for Docker and Kubernetes environments.</p>
<div class="service-meta">
<span class="service-url">portainer.lemonlink.eu</span>
<svg class="arrow-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M5 12h14M12 5l7 7-7 7"/>
</svg>
</div>
</a>
<a href="services/proxmox.html" class="service-card">
<div class="service-header">
<div class="service-icon proxmox">🖥️</div>
<div class="service-info">
<h3>Proxmox VE</h3>
<span class="service-status">● Running</span>
</div>
</div>
<p class="service-description">Open-source server virtualization management platform.</p>
<div class="service-meta">
<span class="service-url">proxmox.lemonlink.eu:8006</span>
<svg class="arrow-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M5 12h14M12 5l7 7-7 7"/>
</svg>
</div>
</a>
<a href="services/pihole.html" class="service-card">
<div class="service-header">
<div class="service-icon pihole">🕳️</div>
<div class="service-info">
<h3>Pi-hole</h3>
<span class="service-status">● Running</span>
</div>
</div>
<p class="service-description">Network-wide ad blocker that acts as a DNS sinkhole.</p>
<div class="service-meta">
<span class="service-url">pihole.lemonlink.eu/admin</span>
<svg class="arrow-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M5 12h14M12 5l7 7-7 7"/>
</svg>
</div>
</a>
</div>
</section>
</main>
<footer>
<div class="container">
<p>🚀 Homelab Dashboard | Built with ❤️ | <a href="https://lemonlink.eu">lemonlink.eu</a></p>
</div>
</footer>
</body>
</html>