Add initial 11ty website structure

This commit is contained in:
Marc Froehlich
2026-07-06 01:04:06 +02:00
parent 62b6bbdcbc
commit 80214bf42d
1378 changed files with 204162 additions and 0 deletions
+116
View File
@@ -0,0 +1,116 @@
:root {
--bg: #0f172a;
--panel: #111827;
--panel2: #1f2937;
--text: #e5e7eb;
--muted: #9ca3af;
--accent: #38bdf8;
--accent2: #a78bfa;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
background: radial-gradient(circle at top left, #1e293b, var(--bg));
color: var(--text);
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
line-height: 1.6;
}
a {
color: var(--accent);
text-decoration: none;
}
.site-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 24px 7vw;
}
.brand {
font-weight: 800;
font-size: 1.25rem;
color: white;
}
nav {
display: flex;
gap: 18px;
flex-wrap: wrap;
}
nav a {
color: var(--muted);
}
nav a:hover {
color: white;
}
.hero {
padding: 90px 7vw 70px;
max-width: 1100px;
}
.hero h1 {
font-size: clamp(2.4rem, 6vw, 5rem);
line-height: 1.02;
margin: 0 0 24px;
}
.hero p {
font-size: 1.25rem;
color: var(--muted);
max-width: 760px;
}
.actions {
display: flex;
gap: 16px;
margin-top: 32px;
flex-wrap: wrap;
}
.button {
padding: 13px 20px;
border-radius: 999px;
background: var(--accent);
color: #020617;
font-weight: 700;
}
.button.secondary {
background: var(--panel2);
color: white;
}
.section {
padding: 40px 7vw;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 18px;
}
.card {
background: rgba(17, 24, 39, 0.82);
border: 1px solid rgba(148, 163, 184, 0.18);
border-radius: 22px;
padding: 24px;
}
.card h3 {
margin-top: 0;
}
.site-footer {
padding: 40px 7vw;
color: var(--muted);
}
+64
View File
@@ -0,0 +1,64 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>KST4Contest Contest-Optimized ON4KST Chat Client</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="KST4Contest is a modern ON4KST chat client built for VHF, UHF and SHF ham radio contest operation.">
<link rel="stylesheet" href="/assets/css/main.css">
</head>
<body>
<header class="site-header">
<a class="brand" href="/">KST4Contest</a>
<nav>
<a href="/features/">Features</a>
<a href="/download/">Download</a>
<a href="/manual/">Manual</a>
<a href="/screenshots/">Screenshots</a>
<a href="/news/">News</a>
<a href="https://github.com/praktimarc/kst4contest">GitHub</a>
</nav>
</header>
<main>
<section class="hero">
<h1>Contest-optimized ON4KST chat for VHF, UHF and SHF operators.</h1>
<p>
KST4Contest is built for serious ham radio contest operation:
priority candidates, AirScout integration, sked reminders, band detection,
frequency detection, dual chat categories and workflow support for modern VHF/UHF/SHF contest stations.
</p>
<div class="actions">
<a class="button" href="https://github.com/praktimarc/kst4contest/releases">Download releases</a>
<a class="button secondary" href="https://github.com/praktimarc/kst4contest">View on GitHub</a>
</div>
</section>
<section class="section">
<div class="grid">
<div class="card">
<h3>Built for contests</h3>
<p>Unlike generic ON4KST clients, KST4Contest focuses on contest workflow, skeds, priorities and fast operator decisions.</p>
</div>
<div class="card">
<h3>Priority candidates</h3>
<p>Score-based candidate ranking helps operators identify promising stations faster.</p>
</div>
<div class="card">
<h3>AirScout workflow</h3>
<p>Airplane scatter windows and candidate timing can be integrated into the operating workflow.</p>
</div>
<div class="card">
<h3>Cross-platform releases</h3>
<p>Windows, Linux and macOS builds are published through GitHub releases.</p>
</div>
</div>
</section>
</main>
<footer class="site-footer">
<p>KST4Contest ON4KST contest workflow for VHF/UHF/SHF operators.</p>
</footer>
</body>
</html>