mirror of
https://github.com/buckit-io/buckit.git
synced 2026-09-21 10:03:27 +00:00
44 lines
2.1 KiB
HTML
44 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Buckit Pages</title>
|
|
<style>
|
|
:root { color-scheme: light; --bg: #f3f5f9; --surface: #ffffff; --border: #d8dee9; --text: #0f172a; --muted: #475569; --link: #0f766e; --shadow: 0 18px 40px rgba(15, 23, 42, 0.08); }
|
|
* { box-sizing: border-box; }
|
|
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--bg); color: var(--text); }
|
|
.page { max-width: 920px; margin: 0 auto; padding: 40px 20px 64px; }
|
|
.hero, .panel { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow); }
|
|
.hero { padding: 28px; margin-bottom: 24px; }
|
|
.eyebrow { display: inline-block; padding: 6px 10px; border-radius: 999px; background: #dcfce7; color: #166534; font-size: 12px; font-weight: 700; text-transform: uppercase; }
|
|
h1 { margin: 14px 0 10px; font-size: 34px; line-height: 1.1; }
|
|
p { margin: 0; color: var(--muted); line-height: 1.6; }
|
|
.panel { padding: 24px; }
|
|
.link-list { display: grid; gap: 14px; }
|
|
.link-card { display: block; padding: 16px 18px; border: 1px solid var(--border); border-radius: 12px; background: #f8fafc; color: var(--text); text-decoration: none; }
|
|
.link-card strong { display: block; margin-bottom: 6px; }
|
|
.link-card span { color: var(--muted); }
|
|
a { color: var(--link); text-decoration: none; }
|
|
a:hover { text-decoration: underline; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="page">
|
|
<section class="hero">
|
|
<span class="eyebrow">Static Pages</span>
|
|
<h1>Buckit Pages</h1>
|
|
<p>Static indexes published through GitHub Pages for Buckit server release navigation and self-update discovery.</p>
|
|
</section>
|
|
<section class="panel">
|
|
<div class="link-list">
|
|
<a class="link-card" href="./server/">
|
|
<strong>Server release assets</strong>
|
|
<span>Open the Buckit server release and archive indexes.</span>
|
|
</a>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</body>
|
|
</html>
|