Files
ced-portfolio/index.html
T
2026-04-25 18:33:21 -05:00

214 lines
6.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chase Dumphord | Digital Systems & Infrastructure</title>
<meta
name="description"
content="Chase Dumphord portfolio - digital systems, infrastructure, networking, automation, homelab engineering, and real-world technical projects."
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="site-header">
<div class="container nav">
<a href="#top" class="logo">Chase Dumphord</a>
<nav>
<ul class="nav-links">
<li><a href="#snapshot">Snapshot</a></li>
<li><a href="#noc">NOC</a></li>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#resume">Resume</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main id="top">
<!-- HERO -->
<section class="hero">
<div class="container hero-grid">
<div class="hero-text">
<p class="eyebrow">Digital Systems • Infrastructure • Networking • Automation • Edge Systems</p>
<h1>I build practical systems that connect hardware, networks, software, and operations.</h1>
<p class="lead">
Im Chase Dumphord — a hands-on systems builder focused on digital infrastructure,
Linux systems, homelab engineering, Raspberry Pi deployments, networking, automation,
and real-world technical problem solving.
</p>
<div class="hero-actions">
<a class="btn btn-primary" href="#projects">View Projects</a>
<a class="btn btn-secondary" href="#contact">Contact Me</a>
</div>
</div>
</div>
</section>
<!-- SNAPSHOT -->
<section id="snapshot" class="section section-alt">
<div class="container">
<div class="section-heading">
<p class="section-label">Environment</p>
<h2>Systems Snapshot</h2>
</div>
<div class="stats-grid">
<div class="stat-card"><h3>12+</h3><p>Nodes</p></div>
<div class="stat-card"><h3>10+</h3><p>Services</p></div>
<div class="stat-card"><h3>4</h3><p>VLANs</p></div>
<div class="stat-card"><h3>2</h3><p>iGate Nodes</p></div>
</div>
</div>
</section>
<!-- NOC -->
<section id="noc" class="section noc-dashboard">
<div class="container">
<div class="section-heading">
<p class="section-label">Ceds NOC</p>
<h2>Live Systems Overview</h2>
</div>
<div class="noc-command-bar">
<span class="status-dot"></span>
<span id="noc-status-text">Loading NOC status...</span>
</div>
<p class="noc-proof">
Built using real infrastructure: Proxmox • K3s • TrueNAS • VLAN segmentation • APRS RF Edge Systems
</p>
<!-- METRICS -->
<div class="noc-metrics-grid">
<div class="noc-metric">
<h3 id="metric-nodes">--</h3>
<p>Infrastructure Nodes</p>
</div>
<div class="noc-metric">
<h3 id="metric-services">--</h3>
<p>Services Online</p>
</div>
<div class="noc-metric">
<h3 id="metric-vlans">--</h3>
<p>Network Segments</p>
</div>
<div class="noc-metric">
<h3 id="metric-edge">--</h3>
<p>Edge Systems</p>
</div>
</div>
<!-- 🚨 ALERT PANEL -->
<div class="noc-alert-panel">
<div class="noc-alert-header">
<h3>🚨 NOC Alert Panel</h3>
<span>Top 3 System Notes</span>
</div>
<div id="noc-alert-list" class="noc-alert-list">
<p>Loading alerts...</p>
</div>
</div>
<!-- SYSTEM GRID -->
<div id="noc-system-grid" class="noc-system-grid"></div>
</div>
</section>
<!-- ABOUT -->
<section id="about" class="section">
<div class="container">
<div class="section-heading">
<p class="section-label">About</p>
<h2>Hands-on systems builder</h2>
</div>
<p>
I build real infrastructure systems, homelabs, networking environments,
Raspberry Pi deployments, and monitoring systems.
</p>
</div>
</section>
<!-- PROJECTS -->
<section id="projects" class="section section-alt">
<div class="container">
<div class="section-heading">
<p class="section-label">Projects</p>
<h2>Infrastructure & Systems Projects</h2>
</div>
<div class="projects-grid">
<article class="project-card">
<h3>Ceds HomeLab</h3>
<a href="https://github.com/ced4568/ceds-homelab" target="_blank">View Project</a>
</article>
<article class="project-card">
<h3>K3s Cluster</h3>
<a href="https://github.com/ced4568/ced-k3s-homelab" target="_blank">View Project</a>
</article>
<article class="project-card">
<h3>APRS iGate</h3>
<a href="https://github.com/ced4568/ceds-aprs-igate" target="_blank">View Project</a>
</article>
</div>
</div>
</section>
<!-- NOC VISION -->
<section class="section noc-section">
<div class="container">
<div class="section-heading">
<p class="section-label">NOC Roadmap</p>
<h2>📊 Ceds NOC Vision</h2>
</div>
<div class="noc-grid">
<div class="noc-card">
<h3>Current</h3>
<p>Live JSON-driven NOC dashboard</p>
</div>
<div class="noc-card">
<h3>Next</h3>
<p>Automated updates + alerts</p>
</div>
<div class="noc-card">
<h3>Future</h3>
<p>Grafana + Prometheus stack</p>
</div>
</div>
</div>
</section>
</main>
<footer class="site-footer">
<div class="container footer-content">
<p>© <span data-year></span> Chase Dumphord</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>