169 lines
5.1 KiB
HTML
169 lines
5.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Home Server Dashboard</title>
|
|
<style>
|
|
:root {
|
|
--bg-gradient-start: #0f172a;
|
|
--bg-gradient-end: #1e1b4b;
|
|
--card-bg: #1e293b;
|
|
--card-hover-bg: #334155;
|
|
--text-primary: #f8fafc;
|
|
--text-secondary: #94a3b8;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
body {
|
|
background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
|
|
background-attachment: fixed;
|
|
color: var(--text-primary);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 2rem;
|
|
}
|
|
|
|
header {
|
|
text-align: center;
|
|
margin-bottom: 4rem;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: 0.5rem;
|
|
background: linear-gradient(to right, #38bdf8, #818cf8);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
|
|
p.subtitle {
|
|
font-size: 1.1rem;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.grid-container {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: 1.5rem;
|
|
width: 100%;
|
|
max-width: 1000px;
|
|
}
|
|
|
|
.card {
|
|
background-color: var(--card-bg);
|
|
border-radius: 16px;
|
|
padding: 2rem;
|
|
text-decoration: none;
|
|
color: var(--text-primary);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
border: 1px solid rgba(255, 255, 255, 0.05);
|
|
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
}
|
|
|
|
.card:hover {
|
|
transform: translateY(-5px);
|
|
background-color: var(--card-hover-bg);
|
|
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
|
border-color: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.icon {
|
|
width: 3rem;
|
|
height: 3rem;
|
|
margin-bottom: 1rem;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.card h2 {
|
|
font-size: 1.25rem;
|
|
margin-bottom: 0.5rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.card p {
|
|
font-size: 0.9rem;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
footer {
|
|
margin-top: auto;
|
|
padding-top: 4rem;
|
|
color: var(--text-secondary);
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
h1 {
|
|
font-size: 2rem;
|
|
}
|
|
.grid-container {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Welcome</h1>
|
|
<p class="subtitle">Select a service.</p>
|
|
</header>
|
|
|
|
<main class="grid-container">
|
|
<a href="https://jellyfin.easye.me/" class="card">
|
|
<img src="https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/svg/jellyfin.svg" alt="Jellyfin Icon" class="icon">
|
|
<h2>Jellyfin</h2>
|
|
<p>Movies & TV Shows</p>
|
|
</a>
|
|
|
|
<a href="https://navidrome.easye.me/" class="card">
|
|
<img src="https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/svg/navidrome.svg" alt="Navidrome Icon" class="icon">
|
|
<h2>Navidrome</h2>
|
|
<p>Music Streaming</p>
|
|
</a>
|
|
|
|
<a href="https://immich.easye.me/" class="card">
|
|
<img src="https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/svg/immich.svg" alt="Immich Icon" class="icon">
|
|
<h2>Immich</h2>
|
|
<p>Photo Management</p>
|
|
</a>
|
|
|
|
<a href="https://gitea.easye.me/" class="card">
|
|
<img src="https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/svg/gitea.svg" alt="Gitea Icon" class="icon">
|
|
<h2>Gitea</h2>
|
|
<p>Code & Git Repos</p>
|
|
</a>
|
|
|
|
<a href="https://cloud.easye.me/" class="card">
|
|
<img src="https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/svg/nextcloud.svg" alt="Share Icon" class="icon">
|
|
<h2>Nextcloud</h2>
|
|
<p>Cloud Storage</p>
|
|
</a>
|
|
|
|
<a href="https://vault.easye.me/" class="card">
|
|
<img src="https://gitea.easye.me/ejones/home-dashboard/raw/branch/main/assets/Vaultwarden.svg" alt="Vaultwarden Icon" class="icon">
|
|
<h2>Vaultwarden</h2>
|
|
<p>Password Manager</p>
|
|
</a>
|
|
</main>
|
|
|
|
<footer>
|
|
<p>Ezra's Home Server © 2026</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|