Add APRS project to portfolio and structure for future projects

This commit is contained in:
2026-04-19 00:40:55 -05:00
parent b4837b24ca
commit 31676ba3f0
2 changed files with 81 additions and 47 deletions
+58 -36
View File
@@ -89,53 +89,75 @@
</div> </div>
</section> </section>
<section id="projects" class="section section-alt"> <section id="projects" class="section">
<div class="container"> <div class="container">
<div class="section-heading"> <div class="section-heading">
<p class="section-label">Projects</p> <p class="section-label">Projects</p>
<h2>Featured technical work</h2> <h2>Real Systems Ive Built</h2>
</div> </div>
<div class="projects-grid"> <div class="projects-grid">
<article class="project-card">
<div class="project-top">
<h3>APRS iGate System</h3>
<span class="tag">Featured</span>
</div>
<p>
Built a dual-node APRS iGate system using Raspberry Pi, Direwolf, APRS-IS, GPS planning,
and automated Wi-Fi failover between HomeLab and mobile hotspot connectivity.
</p>
<ul class="clean-list">
<li>Direwolf APRS decoding and APRS-IS integration</li>
<li>Systemd-managed service automation</li>
<li>HomeLab ↔ hotspot failover using nmcli priorities</li>
<li>GitHub-documented configs, architecture, and setup</li>
</ul>
<div class="project-links">
<a href="https://github.com/ced4568/ceds-aprs-igate" target="_blank" rel="noopener noreferrer">View Repo</a>
</div>
</article>
<article class="project-card"> <!-- APRS PROJECT -->
<div class="project-top"> <div class="project-card">
<h3>Ceds HomeLab</h3> <h3>📡 APRS iGate System</h3>
<span class="tag">In Progress</span>
</div>
<p> <p>
Ongoing homelab platform focused on infrastructure, monitoring, self-hosting, networking, Dual-node APRS iGate system built with Raspberry Pi, Direwolf, GPS, and network failover.
and practical systems engineering. Integrates RF systems into IP infrastructure and HomeLab environment.
</p> </p>
<ul class="clean-list">
<li>VLAN-aware architecture</li> <ul>
<li>Pi-based services and self-hosted tools</li> <li>Linux + systemd services</li>
<li>Documentation-driven build process</li> <li>Network failover (WiFi ↔ hotspot)</li>
<li>Future monitoring and dashboard expansion</li> <li>Hardware + software integration</li>
<li>Documented architecture + system flow</li>
</ul> </ul>
<div class="project-links">
<a href="https://github.com/ced4568" target="_blank" rel="noopener noreferrer">View GitHub</a> <a href="https://github.com/ced4568/ceds-aprs-igate" target="_blank" class="project-link">
View Project →
</a>
</div> </div>
</article>
<!-- PLACEHOLDER: HOMELAB -->
<div class="project-card">
<h3>🧠 Ceds HomeLab</h3>
<p>
Personal infrastructure lab focused on networking, monitoring, virtualization,
and self-hosted services.
</p>
<ul>
<li>VLAN segmentation</li>
<li>Proxmox virtualization</li>
<li>Service hosting + monitoring</li>
<li>System architecture design</li>
</ul>
<a href="#" class="project-link">
Coming Soon →
</a>
</div>
<!-- PLACEHOLDER: K3S -->
<div class="project-card">
<h3>☸️ K3s Cluster</h3>
<p>
Multi-node Kubernetes cluster built for container orchestration,
service deployment, and infrastructure experimentation.
</p>
<ul>
<li>Multi-node cluster setup</li>
<li>Containerized workloads</li>
<li>Service deployment</li>
<li>Infrastructure automation</li>
</ul>
<a href="#" class="project-link">
Coming Soon →
</a>
</div>
</div> </div>
</div> </div>
</section> </section>
+12
View File
@@ -348,3 +348,15 @@ a:hover {
align-items: flex-start; align-items: flex-start;
} }
} }
.project-link {
display: inline-block;
margin-top: 10px;
color: #4ea1ff;
font-weight: bold;
text-decoration: none;
}
.project-link:hover {
text-decoration: underline;
}