Files
PLFM_RADAR/docs/index.html
T
NawfalMotii79 2ec636ef58 Update index.html for absolute paths and styles
Updated links to use absolute paths and added fallback inline styles for the documentation site.
2026-04-02 00:32:41 +01:00

248 lines
7.4 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>AERIS-10 Engineering Docs</title>
<!-- Use absolute path from root for CSS -->
<link rel="stylesheet" href="/docs/assets/style.css">
<!-- Fallback inline styles if CSS file is missing -->
<style>
/* Base styles in case assets/style.css is missing */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
color: #1a1a2e;
background: #f5f7fa;
}
.topbar {
background: #1a1a2e;
color: white;
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 100;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
.nav {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}
.brand {
font-size: 1.5rem;
font-weight: bold;
color: #00d4ff;
text-decoration: none;
}
.nav a {
color: white;
text-decoration: none;
margin-left: 1.5rem;
}
.nav a:hover {
color: #00d4ff;
}
.page {
padding: 3rem 2rem;
}
.hero {
text-align: center;
margin-bottom: 3rem;
}
.eyebrow {
color: #00d4ff;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 1rem;
}
.hero h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
color: #1a1a2e;
}
.cta-row {
margin-top: 2rem;
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}
.button {
display: inline-block;
padding: 0.75rem 1.5rem;
background: #00d4ff;
color: #1a1a2e;
text-decoration: none;
border-radius: 5px;
font-weight: 600;
}
.button.ghost {
background: transparent;
border: 2px solid #00d4ff;
color: #00d4ff;
}
.stats-grid, .grid-2 {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}
.card {
background: white;
padding: 1.5rem;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.card h2 {
margin-bottom: 1rem;
font-size: 1.25rem;
}
.metric {
font-size: 2rem;
font-weight: bold;
color: #00d4ff;
margin: 0.5rem 0;
}
.muted {
color: #666;
font-size: 0.875rem;
}
.card ul {
padding-left: 1.5rem;
}
.card li {
margin: 0.5rem 0;
}
.card a {
color: #00d4ff;
text-decoration: none;
}
.card a:hover {
text-decoration: underline;
}
.footer {
background: #1a1a2e;
color: white;
text-align: center;
padding: 2rem;
margin-top: 2rem;
}
@media (max-width: 768px) {
.nav {
flex-direction: column;
text-align: center;
}
.nav a {
margin: 0 0.75rem;
}
.hero h1 {
font-size: 1.75rem;
}
}
</style>
</head>
<body>
<header class="topbar">
<div class="container nav">
<a class="brand" href="/docs/index.html">AERIS-10 Docs</a>
<nav>
<a href="/docs/architecture.html">Architecture</a>
<a href="/docs/implementation-log.html">Implementation Log</a>
<a href="/docs/bring-up.html">Bring-Up</a>
<a href="/docs/reports.html">Reports</a>
<a href="/docs/release-notes.html">Release Notes</a>
<!-- Link back to main README -->
<a href="/README.md" style="color: #00d4ff;">📡 Main Project</a>
</nav>
</div>
</header>
<main class="container page">
<section class="hero">
<p class="eyebrow">Open-Source Phased Array Radar</p>
<h1>Engineering Documentation Site</h1>
<p>This site tracks architecture, validated implementation baselines, constraint cleanup progress, and pre-hardware bring-up readiness for AERIS-10.</p>
<div class="cta-row">
<a class="button" href="/docs/implementation-log.html">View Change Timeline</a>
<a class="button ghost" href="/docs/bring-up.html">Open Readiness Package</a>
</div>
</section>
<section class="stats-grid">
<article class="card stat">
<h2>Tracked Timing Baseline</h2>
<p class="metric">WNS +0.058 ns</p>
<p class="muted">WHS +0.068, WPWS +0.684 after validated Build 16 XDC port</p>
</article>
<article class="card stat">
<h2>Regression Status</h2>
<p class="metric">MCU 15 / 15, FPGA 18 / 18</p>
<p class="muted">Host firmware regression plus FPGA unit and integration suites passing</p>
</article>
<article class="card stat">
<h2>Methodology State</h2>
<p class="metric">XDCB-5 = 0</p>
<p class="muted">Single documented TIMING-18 residue on `ft601_txe` async observation</p>
</article>
<article class="card stat">
<h2>Current Phase</h2>
<p class="metric">Pre-Hardware Readiness</p>
<p class="muted">Board-arrival smoke test, artifact inventory, and open-risk tracking prepared</p>
</article>
</section>
<section class="grid-2">
<article class="card">
<h2>What changed recently</h2>
<ul>
<li>Ported the validated Build 16 production-target XDC cleanup into the tracked repository.</li>
<li>Preserved positive post-route timing while clearing XDCB-5 and reducing methodology residue to a single documented item.</li>
<li>Validated the tracked branch with MCU host regression and FPGA regression/integration suites.</li>
<li>Refreshed the bring-up documentation into a pre-arrival readiness package for the FPGA module and carrier board.</li>
<li>Kept upstream ADAR1000 bulk imports out of the baseline pending selective, justified reuse only.</li>
</ul>
</article>
<article class="card">
<h2>Documentation Map</h2>
<ul>
<li><a href="/docs/architecture.html">System and FPGA Architecture</a></li>
<li><a href="/docs/implementation-log.html">Detailed Engineering Change Log</a></li>
<li><a href="/docs/bring-up.html">Pre-Arrival Bring-Up Plan, Artifact Checklist, and Open Risks</a></li>
<li><a href="/docs/reports.html">Published reports, simulations, and artifact context</a></li>
<li><a href="/docs/release-notes.html">Release Notes by Key Commit</a></li>
</ul>
</article>
</section>
<!-- Optional: Add radar image from main repo -->
<section style="text-align: center; margin-top: 3rem;">
<h3>AERIS-10 Radar System</h3>
<img src="/media/image1.jpeg" alt="AERIS-10 Radar System" style="max-width: 100%; border-radius: 10px; margin-top: 1rem;">
<p class="muted" style="margin-top: 0.5rem;">Alpha prototype hardware</p>
</section>
</main>
<footer class="footer">
<div class="container">
<p>AERIS-10 documentation published via GitHub Pages from <code>/docs</code>.</p>
<p style="margin-top: 0.5rem; font-size: 0.875rem;">
<a href="/README.md" style="color: #00d4ff;">Main Project README</a> |
<a href="https://github.com/yourusername/aeris-10" style="color: #00d4ff;">GitHub Repository</a>
</p>
</div>
</footer>
</body>
</html>