673 lines
20 KiB
HTML
673 lines
20 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>SYSARCH · Technical Knowledge Base</title>
|
|
|
|
<!-- FONTS -->
|
|
<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=EB+Garamond:ital,wght@0,400;0,500;1,400&family=JetBrains+Mono:wght@400;500&family=Saira+Condensed:wght@500;600;700;800&display=swap" rel="stylesheet">
|
|
|
|
<style>
|
|
/* ══════════════════════════════════════════════
|
|
DESIGN TOKENS — Bugatti-inspired monochrome
|
|
══════════════════════════════════════════════ */
|
|
:root {
|
|
/* Backgrounds */
|
|
--canvas: #000000;
|
|
--surface-card: #141414;
|
|
--surface-code: #0d0d0d;
|
|
--surface-elevated: #1f1f1f;
|
|
|
|
/* Text */
|
|
--ink: #ffffff;
|
|
--body: #cccccc;
|
|
--muted: #999999;
|
|
--muted-deep: #666666;
|
|
|
|
/* Borders */
|
|
--border: #262626;
|
|
|
|
/* Accent */
|
|
--link: #c3d9f3;
|
|
--success: #5fa657;
|
|
--warning: #d4a017;
|
|
|
|
/* Typography */
|
|
--font-display: 'Saira Condensed', 'Impact', 'Arial Black', sans-serif;
|
|
--font-body: 'EB Garamond', 'Georgia', serif;
|
|
--font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', ui-monospace, monospace;
|
|
|
|
/* Radii — ONLY 0, 9999px, or 50% */
|
|
--radius-none: 0px;
|
|
--radius-pill: 9999px;
|
|
--radius-circle: 50%;
|
|
|
|
/* Spacing */
|
|
--section-gap: 120px;
|
|
--card-gap: 24px;
|
|
--pad-inner: 16px;
|
|
}
|
|
|
|
/* ══════════════════════════════════════════════
|
|
RESET
|
|
══════════════════════════════════════════════ */
|
|
*, *::before, *::after {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
html {
|
|
background: var(--canvas);
|
|
color: var(--body);
|
|
font-family: var(--font-body);
|
|
font-size: 16px;
|
|
line-height: 1.6;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
/* NO box-shadow anywhere */
|
|
box-shadow: none;
|
|
}
|
|
|
|
body {
|
|
box-shadow: none;
|
|
}
|
|
|
|
/* Ensure nothing gets a shadow */
|
|
*, *::before, *::after {
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
/* ══════════════════════════════════════════════
|
|
UTILITY
|
|
══════════════════════════════════════════════ */
|
|
.container {
|
|
max-width: 1280px;
|
|
margin: 0 auto;
|
|
padding-left: 48px;
|
|
padding-right: 48px;
|
|
}
|
|
|
|
/* ══════════════════════════════════════════════
|
|
SECTION LABEL (reusable)
|
|
══════════════════════════════════════════════ */
|
|
.section-label {
|
|
display: block;
|
|
font-family: var(--font-mono);
|
|
font-size: 11px;
|
|
font-weight: 400;
|
|
text-transform: uppercase;
|
|
letter-spacing: 2px;
|
|
color: var(--muted);
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
/* ══════════════════════════════════════════════
|
|
NAVIGATION
|
|
══════════════════════════════════════════════ */
|
|
.nav {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 100;
|
|
height: 56px;
|
|
background: var(--canvas);
|
|
border-bottom: 1px solid var(--border);
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 48px;
|
|
}
|
|
|
|
.nav__inner {
|
|
width: 100%;
|
|
max-width: 1280px;
|
|
margin: 0 auto;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
/* Wordmark */
|
|
.nav__wordmark {
|
|
font-family: var(--font-mono);
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
text-transform: uppercase;
|
|
letter-spacing: 6px;
|
|
color: var(--ink);
|
|
text-decoration: none;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
/* Center nav links */
|
|
.nav__links {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0;
|
|
list-style: none;
|
|
position: absolute;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
}
|
|
|
|
.nav__link {
|
|
font-family: var(--font-mono);
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
text-transform: uppercase;
|
|
letter-spacing: 2px;
|
|
color: var(--muted);
|
|
text-decoration: none;
|
|
padding: 8px 12px;
|
|
transition: color 0.2s ease;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.nav__link:hover {
|
|
color: var(--ink);
|
|
}
|
|
|
|
.nav__dot {
|
|
font-family: var(--font-mono);
|
|
font-size: 12px;
|
|
color: var(--muted-deep);
|
|
padding: 0 4px;
|
|
user-select: none;
|
|
}
|
|
|
|
/* Search button */
|
|
.nav__search {
|
|
font-family: var(--font-mono);
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
text-transform: uppercase;
|
|
letter-spacing: 2.5px;
|
|
color: var(--ink);
|
|
background: transparent;
|
|
border: 1px solid var(--ink);
|
|
border-radius: var(--radius-pill);
|
|
padding: 10px 24px;
|
|
cursor: pointer;
|
|
transition: background 0.2s ease, color 0.2s ease;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.nav__search:hover {
|
|
background: var(--ink);
|
|
color: var(--canvas);
|
|
}
|
|
|
|
/* ══════════════════════════════════════════════
|
|
HERO
|
|
══════════════════════════════════════════════ */
|
|
.hero {
|
|
padding-top: 96px;
|
|
padding-bottom: 96px;
|
|
}
|
|
|
|
.hero__inner {
|
|
max-width: 720px;
|
|
margin: 0;
|
|
}
|
|
|
|
.hero__label {
|
|
display: block;
|
|
font-family: var(--font-mono);
|
|
font-size: 11px;
|
|
font-weight: 400;
|
|
text-transform: uppercase;
|
|
letter-spacing: 2px;
|
|
color: var(--muted);
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.hero__heading {
|
|
font-family: var(--font-display);
|
|
font-size: 64px;
|
|
font-weight: 800;
|
|
text-transform: uppercase;
|
|
letter-spacing: 4px;
|
|
color: var(--ink);
|
|
line-height: 1.05;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.hero__subtitle {
|
|
font-family: var(--font-body);
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
color: var(--body);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* ══════════════════════════════════════════════
|
|
STATS BAR
|
|
══════════════════════════════════════════════ */
|
|
.stats {
|
|
background: var(--canvas);
|
|
border-top: 1px solid var(--border);
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
|
|
.stats__grid {
|
|
display: flex;
|
|
}
|
|
|
|
.stats__cell {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 40px var(--pad-inner);
|
|
border-right: 1px solid var(--border);
|
|
}
|
|
|
|
.stats__cell:last-child {
|
|
border-right: none;
|
|
}
|
|
|
|
.stats__value {
|
|
font-family: var(--font-display);
|
|
font-size: 28px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
color: var(--ink);
|
|
letter-spacing: 1px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.stats__label {
|
|
font-family: var(--font-mono);
|
|
font-size: 11px;
|
|
font-weight: 400;
|
|
text-transform: uppercase;
|
|
color: var(--muted);
|
|
letter-spacing: 2px;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
/* ══════════════════════════════════════════════
|
|
EXPLORE SECTION
|
|
══════════════════════════════════════════════ */
|
|
.explore {
|
|
padding-top: var(--section-gap);
|
|
padding-bottom: var(--section-gap);
|
|
}
|
|
|
|
.explore__grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: var(--card-gap);
|
|
}
|
|
|
|
.card {
|
|
background: var(--surface-card);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-none);
|
|
padding: 24px;
|
|
transition: border-color 0.25s ease, background 0.25s ease;
|
|
}
|
|
|
|
.card:hover {
|
|
border-color: var(--muted-deep);
|
|
background: var(--surface-elevated);
|
|
}
|
|
|
|
.card__heading {
|
|
font-family: var(--font-display);
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1.5px;
|
|
color: var(--ink);
|
|
line-height: 1.15;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.card__subtitle {
|
|
font-family: var(--font-mono);
|
|
font-size: 11px;
|
|
font-weight: 400;
|
|
text-transform: uppercase;
|
|
letter-spacing: 2px;
|
|
color: var(--muted);
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.card__body {
|
|
font-family: var(--font-body);
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
color: var(--body);
|
|
line-height: 1.6;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.card__arrow {
|
|
font-family: var(--font-mono);
|
|
font-size: 16px;
|
|
color: var(--muted);
|
|
transition: color 0.2s ease, transform 0.2s ease;
|
|
display: inline-block;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.card:hover .card__arrow {
|
|
color: var(--ink);
|
|
transform: translateX(4px);
|
|
}
|
|
|
|
/* ══════════════════════════════════════════════
|
|
UPDATES
|
|
══════════════════════════════════════════════ */
|
|
.updates {
|
|
padding-bottom: var(--section-gap);
|
|
}
|
|
|
|
.updates__list {
|
|
list-style: none;
|
|
}
|
|
|
|
.updates__item {
|
|
display: flex;
|
|
align-items: baseline;
|
|
padding: 20px 0;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
|
|
.updates__item:first-child {
|
|
border-top: 1px solid var(--border);
|
|
}
|
|
|
|
.updates__date {
|
|
font-family: var(--font-mono);
|
|
font-size: 11px;
|
|
font-weight: 400;
|
|
color: var(--muted);
|
|
letter-spacing: 1px;
|
|
min-width: 140px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.updates__title {
|
|
font-family: var(--font-display);
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
color: var(--ink);
|
|
text-decoration: none;
|
|
transition: color 0.2s ease;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.updates__title:hover {
|
|
color: var(--link);
|
|
}
|
|
|
|
/* ══════════════════════════════════════════════
|
|
FOOTER
|
|
══════════════════════════════════════════════ */
|
|
.footer {
|
|
border-top: 1px solid var(--border);
|
|
padding: 48px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.footer__text {
|
|
font-family: var(--font-mono);
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
color: var(--muted);
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
/* ══════════════════════════════════════════════
|
|
RESPONSIVE
|
|
══════════════════════════════════════════════ */
|
|
@media (max-width: 880px) {
|
|
/* Nav: hide center links on tablet, show wordmark + search */
|
|
.nav__links {
|
|
display: none;
|
|
}
|
|
|
|
.nav {
|
|
padding: 0 24px;
|
|
}
|
|
|
|
.hero {
|
|
padding-top: 64px;
|
|
padding-bottom: 64px;
|
|
}
|
|
|
|
.container {
|
|
padding-left: 24px;
|
|
padding-right: 24px;
|
|
}
|
|
|
|
.hero__heading {
|
|
font-size: 36px;
|
|
letter-spacing: 2px;
|
|
}
|
|
|
|
.hero__subtitle {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.explore__grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.stats__grid {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.stats__cell {
|
|
flex: 0 0 50%;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
|
|
.stats__cell:nth-child(even) {
|
|
border-right: none;
|
|
}
|
|
|
|
.stats__cell:nth-child(n+3) {
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 540px) {
|
|
.nav__wordmark {
|
|
font-size: 12px;
|
|
letter-spacing: 3px;
|
|
}
|
|
|
|
.nav__search {
|
|
font-size: 11px;
|
|
letter-spacing: 2px;
|
|
padding: 8px 16px;
|
|
}
|
|
|
|
.hero__heading {
|
|
font-size: 28px;
|
|
letter-spacing: 1.5px;
|
|
}
|
|
|
|
.hero__subtitle {
|
|
font-size: 15px;
|
|
}
|
|
|
|
.card__heading {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.updates__item {
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
padding: 16px 0;
|
|
}
|
|
|
|
.updates__date {
|
|
min-width: unset;
|
|
}
|
|
|
|
.updates__title {
|
|
font-size: 17px;
|
|
}
|
|
|
|
.stats__value {
|
|
font-size: 24px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- ═══════════════════════════════════
|
|
NAVIGATION
|
|
═══════════════════════════════════ -->
|
|
<nav class="nav" role="navigation" aria-label="Primary navigation">
|
|
<div class="nav__inner">
|
|
<a href="/" class="nav__wordmark" aria-label="SysArch Home">SYSARCH</a>
|
|
|
|
<ul class="nav__links">
|
|
<li><a href="#" class="nav__link">MACHINES</a></li>
|
|
<li><span class="nav__dot" aria-hidden="true">·</span></li>
|
|
<li><a href="#" class="nav__link">UBUNTU</a></li>
|
|
<li><span class="nav__dot" aria-hidden="true">·</span></li>
|
|
<li><a href="#" class="nav__link">DOCKER</a></li>
|
|
<li><span class="nav__dot" aria-hidden="true">·</span></li>
|
|
<li><a href="#" class="nav__link">HOME ASSISTANT</a></li>
|
|
<li><span class="nav__dot" aria-hidden="true">·</span></li>
|
|
<li><a href="#" class="nav__link">DEV ENV</a></li>
|
|
</ul>
|
|
|
|
<button class="nav__search" aria-label="Open search">SEARCH</button>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- ═══════════════════════════════════
|
|
HERO
|
|
═══════════════════════════════════ -->
|
|
<section class="hero" aria-labelledby="hero-heading">
|
|
<div class="container">
|
|
<div class="hero__inner">
|
|
<span class="hero__label">SYSARCH HOMELAB</span>
|
|
<h1 class="hero__heading" id="hero-heading">TECHNICAL KNOWLEDGE BASE</h1>
|
|
<p class="hero__subtitle">System architecture, configuration, and operations documentation for the homelab fleet.</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- ═══════════════════════════════════
|
|
STATS BAR
|
|
═══════════════════════════════════ -->
|
|
<section class="stats" aria-label="System statistics">
|
|
<div class="container" style="padding-left: 0; padding-right: 0;">
|
|
<div class="stats__grid">
|
|
<div class="stats__cell">
|
|
<span class="stats__value">12</span>
|
|
<span class="stats__label">MACHINES</span>
|
|
</div>
|
|
<div class="stats__cell">
|
|
<span class="stats__value">47</span>
|
|
<span class="stats__label">SERVICES</span>
|
|
</div>
|
|
<div class="stats__cell">
|
|
<span class="stats__value">3</span>
|
|
<span class="stats__label">NETWORKS</span>
|
|
</div>
|
|
<div class="stats__cell">
|
|
<span class="stats__value">99%</span>
|
|
<span class="stats__label">UPTIME</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- ═══════════════════════════════════
|
|
EXPLORE SECTION
|
|
═══════════════════════════════════ -->
|
|
<section class="explore" aria-labelledby="explore-label">
|
|
<div class="container">
|
|
<span class="section-label" id="explore-label">EXPLORE</span>
|
|
<div class="explore__grid">
|
|
|
|
<!-- CARD 1 -->
|
|
<article class="card">
|
|
<h2 class="card__heading">NIXOS MACHINES</h2>
|
|
<p class="card__subtitle">CONFIG FLAKES & DEPLOYMENTS</p>
|
|
<p class="card__body">Multi-machine NixOS fleet managed via flakes. Desktops, servers, and VMs with unified configuration and declarative deployments.</p>
|
|
<span class="card__arrow" aria-hidden="true">→</span>
|
|
</article>
|
|
|
|
<!-- CARD 2 -->
|
|
<article class="card">
|
|
<h2 class="card__heading">UBUNTU & DOCKER</h2>
|
|
<p class="card__subtitle">CONTAINERIZED SERVICES</p>
|
|
<p class="card__body">Container orchestration for 47+ self-hosted services. Docker Compose stacks, port mapping, volume management, and backup strategies.</p>
|
|
<span class="card__arrow" aria-hidden="true">→</span>
|
|
</article>
|
|
|
|
<!-- CARD 3 -->
|
|
<article class="card">
|
|
<h2 class="card__heading">HOME ASSISTANT</h2>
|
|
<p class="card__subtitle">AUTOMATION & IOT</p>
|
|
<p class="card__body">Smart home infrastructure. Automations, sensors, dashboards, and integrations across 30+ IoT devices with local control.</p>
|
|
<span class="card__arrow" aria-hidden="true">→</span>
|
|
</article>
|
|
|
|
<!-- CARD 4 -->
|
|
<article class="card">
|
|
<h2 class="card__heading">TERMINALS & DEV ENV</h2>
|
|
<p class="card__subtitle">NVIM & CLI TOOLING</p>
|
|
<p class="card__body">Developer workspace configuration. Terminal multiplexing, editor setup, language toolchains, and productivity workflows.</p>
|
|
<span class="card__arrow" aria-hidden="true">→</span>
|
|
</article>
|
|
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- ═══════════════════════════════════
|
|
LATEST UPDATES
|
|
═══════════════════════════════════ -->
|
|
<section class="updates" aria-labelledby="updates-label">
|
|
<div class="container">
|
|
<span class="section-label" id="updates-label">LATEST UPDATES</span>
|
|
<ul class="updates__list">
|
|
|
|
<li class="updates__item">
|
|
<time class="updates__date" datetime="2026-07-01">2026-07-01</time>
|
|
<a href="#" class="updates__title">KUBERNETES CLUSTER BOOTSTRAP</a>
|
|
</li>
|
|
|
|
<li class="updates__item">
|
|
<time class="updates__date" datetime="2026-06-28">2026-06-28</time>
|
|
<a href="#" class="updates__title">DOCKER REGISTRY MIGRATION</a>
|
|
</li>
|
|
|
|
<li class="updates__item">
|
|
<time class="updates__date" datetime="2026-06-25">2026-06-25</time>
|
|
<a href="#" class="updates__title">HOME ASSISTANT BACKUP PIPELINE</a>
|
|
</li>
|
|
|
|
</ul>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- ═══════════════════════════════════
|
|
FOOTER
|
|
═══════════════════════════════════ -->
|
|
<footer class="footer" role="contentinfo">
|
|
<div class="container">
|
|
<p class="footer__text">SYSARCH · Technical Knowledge Base · Built with Wiki.js</p>
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|