feat: Add setup page and OG
All checks were successful
Build Docker / BuildImage (push) Successful in 1m0s
Check Code Quality / RuffCheck (push) Successful in 1m8s

This commit is contained in:
2026-04-04 19:30:14 +11:00
parent 5519132c27
commit 17d2f20b61
4 changed files with 132 additions and 3 deletions

View File

@@ -389,4 +389,30 @@ th {
color: var(--accent);
text-decoration: none;
font-weight: 500;
}
}
.setup-panel {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 12px;
}
.setup-link {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 10px 14px;
border-radius: 10px;
border: 1px solid var(--panel-border);
color: #fff;
text-decoration: none;
font-weight: 600;
background: linear-gradient(120deg, #ff6b35, #ff8c42);
transition: opacity 0.2s;
}
.setup-link:hover {
opacity: 0.9;
}