mirror of
https://github.com/ced4568/ceds-noc.git
synced 2026-08-12 21:04:02 +00:00
Build V3 NOC dashboard portfolio layout
This commit is contained in:
+42
@@ -103,6 +103,48 @@ building_real_systems</code></pre>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<section class="section noc-dashboard">
|
||||
<div class="container">
|
||||
<div class="section-heading">
|
||||
<p class="section-label">Ced’s NOC</p>
|
||||
<h2>Network Operations Dashboard</h2>
|
||||
<p class="section-intro">
|
||||
A portfolio view of the infrastructure, edge systems, and monitoring stack I’m building across Ced’s HomeLab.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="noc-status-grid">
|
||||
<div class="noc-status-card online">
|
||||
<span class="status-dot"></span>
|
||||
<h3>HomeLab Core</h3>
|
||||
<p>Infrastructure services, VLANs, dashboards, and self-hosted systems.</p>
|
||||
<small>Status: Active Build</small>
|
||||
</div>
|
||||
|
||||
<div class="noc-status-card online">
|
||||
<span class="status-dot"></span>
|
||||
<h3>K3s Cluster</h3>
|
||||
<p>Distributed container environment for service deployment and orchestration.</p>
|
||||
<small>Status: Active Build</small>
|
||||
</div>
|
||||
|
||||
<div class="noc-status-card warning">
|
||||
<span class="status-dot"></span>
|
||||
<h3>APRS iGate</h3>
|
||||
<p>RF-to-IP edge system using Raspberry Pi, Direwolf, APRS-IS, and mobile expansion.</p>
|
||||
<small>Status: Operational / Tuning</small>
|
||||
</div>
|
||||
|
||||
<div class="noc-status-card planned">
|
||||
<span class="status-dot"></span>
|
||||
<h3>Unified Monitoring</h3>
|
||||
<p>Future Grafana/Uptime Kuma view for services, nodes, and edge devices.</p>
|
||||
<small>Status: Planned</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="stats-grid">
|
||||
<div class="stat-card">
|
||||
<h3>12+</h3>
|
||||
|
||||
@@ -477,4 +477,74 @@ a:hover {
|
||||
align-items: flex-start;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
.noc-dashboard {
|
||||
background:
|
||||
radial-gradient(circle at top left, rgba(142, 240, 207, 0.08), transparent 30%),
|
||||
linear-gradient(180deg, #070b12 0%, #0d1422 100%);
|
||||
border-top: 1px solid var(--line);
|
||||
border-bottom: 1px solid var(--line);
|
||||
}
|
||||
|
||||
.noc-status-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||||
gap: 1.25rem;
|
||||
}
|
||||
|
||||
.noc-status-card {
|
||||
position: relative;
|
||||
padding: 1.35rem;
|
||||
border-radius: var(--radius);
|
||||
background: rgba(17, 28, 46, 0.92);
|
||||
border: 1px solid var(--line);
|
||||
box-shadow: var(--shadow);
|
||||
}
|
||||
|
||||
.noc-status-card h3 {
|
||||
margin-top: 0.7rem;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.noc-status-card p {
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.noc-status-card small {
|
||||
display: inline-block;
|
||||
margin-top: 0.8rem;
|
||||
color: var(--accent-2);
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.status-dot {
|
||||
width: 11px;
|
||||
height: 11px;
|
||||
border-radius: 50%;
|
||||
display: inline-block;
|
||||
background: var(--accent-2);
|
||||
box-shadow: 0 0 16px rgba(142, 240, 207, 0.9);
|
||||
}
|
||||
|
||||
.noc-status-card.warning .status-dot {
|
||||
background: var(--warning);
|
||||
box-shadow: 0 0 16px rgba(242, 204, 96, 0.9);
|
||||
}
|
||||
|
||||
.noc-status-card.planned .status-dot {
|
||||
background: var(--accent);
|
||||
box-shadow: 0 0 16px rgba(88, 166, 255, 0.9);
|
||||
}
|
||||
|
||||
@media (max-width: 1050px) {
|
||||
.noc-status-grid {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 620px) {
|
||||
.noc-status-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user