Revise index.html with new images and metadata

Updated metadata and added new images for the AERIS-10 project. Adjusted GitHub links and footer information.
This commit is contained in:
NawfalMotii79
2026-04-02 01:14:06 +01:00
committed by GitHub
parent 49e22b8bc9
commit 1beb7dc1ad
+55 -37
View File
@@ -3,11 +3,10 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="AERIS-10 - Open Source Pulse Linear Frequency Modulated Phased Array Radar System. A low-cost 10.5 GHz radar for researchers, drone developers, and SDR enthusiasts."> <meta name="description" content="AERIS-10 - Open Source Pulse Linear Frequency Modulated Phased Array Radar System">
<meta name="keywords" content="radar, open source, phased array, SDR, FPGA, beamforming, LFM radar, 10.5GHz">
<meta name="author" content="AERIS-10 Project">
<title>AERIS-10 | Open Source Phased Array Radar System</title> <title>AERIS-10 | Open Source Phased Array Radar System</title>
<style> <style>
/* Your existing CSS remains exactly the same */
* { * {
margin: 0; margin: 0;
padding: 0; padding: 0;
@@ -21,7 +20,6 @@
background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%); background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
} }
/* Navigation */
.navbar { .navbar {
background: #1a1a2e; background: #1a1a2e;
color: white; color: white;
@@ -68,7 +66,6 @@
color: #00d4ff; color: #00d4ff;
} }
/* Buttons */
.btn { .btn {
display: inline-block; display: inline-block;
padding: 0.75rem 1.5rem; padding: 0.75rem 1.5rem;
@@ -100,7 +97,6 @@
color: #1a1a2e; color: #1a1a2e;
} }
/* Hero Section */
.hero { .hero {
background: linear-gradient(135deg, #0f0c29, #302b63, #24243e); background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
color: white; color: white;
@@ -139,14 +135,12 @@
font-size: 0.9rem; font-size: 0.9rem;
} }
/* Container */
.container { .container {
max-width: 1200px; max-width: 1200px;
margin: 0 auto; margin: 0 auto;
padding: 3rem 2rem; padding: 3rem 2rem;
} }
/* Section Headers */
.section-header { .section-header {
text-align: center; text-align: center;
margin-bottom: 3rem; margin-bottom: 3rem;
@@ -164,7 +158,6 @@
margin: 0 auto; margin: 0 auto;
} }
/* Cards Grid */
.cards-grid { .cards-grid {
display: grid; display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
@@ -199,7 +192,6 @@
margin-bottom: 1rem; margin-bottom: 1rem;
} }
/* Comparison Table */
.comparison-table { .comparison-table {
background: white; background: white;
border-radius: 10px; border-radius: 10px;
@@ -229,7 +221,6 @@
background: #f8f9fa; background: #f8f9fa;
} }
/* Hardware Architecture */
.architecture { .architecture {
background: #1e1e2e; background: #1e1e2e;
color: white; color: white;
@@ -249,7 +240,6 @@
color: #00d4ff; color: #00d4ff;
} }
/* Status Grid */
.status-grid { .status-grid {
display: grid; display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
@@ -279,7 +269,6 @@
color: #ffc107; color: #ffc107;
} }
/* Contributors Section */
.contributors { .contributors {
background: white; background: white;
border-radius: 10px; border-radius: 10px;
@@ -295,7 +284,27 @@
margin-top: 1rem; margin-top: 1rem;
} }
/* Footer */ /* NEW: Image styling */
.hero-image {
max-width: 100%;
margin: 2rem auto;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.demo-image {
max-width: 100%;
margin: 2rem 0;
border-radius: 10px;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.sponsor-image {
max-width: 200px;
margin: 1rem auto;
display: block;
}
.footer { .footer {
background: #1a1a2e; background: #1a1a2e;
color: white; color: white;
@@ -309,10 +318,6 @@
text-decoration: none; text-decoration: none;
} }
.footer a:hover {
text-decoration: underline;
}
.social-links { .social-links {
display: flex; display: flex;
justify-content: center; justify-content: center;
@@ -321,27 +326,22 @@
flex-wrap: wrap; flex-wrap: wrap;
} }
/* Responsive */
@media (max-width: 768px) { @media (max-width: 768px) {
.nav-container { .nav-container {
flex-direction: column; flex-direction: column;
gap: 1rem; gap: 1rem;
} }
.nav-links { .nav-links {
justify-content: center; justify-content: center;
} }
.hero h1 { .hero h1 {
font-size: 2rem; font-size: 2rem;
} }
.section-header h2 { .section-header h2 {
font-size: 2rem; font-size: 2rem;
} }
} }
/* Badges */
.badges-row { .badges-row {
display: flex; display: flex;
justify-content: center; justify-content: center;
@@ -362,17 +362,12 @@
gap: 0.5rem; gap: 0.5rem;
} }
/* Misc */
hr { hr {
margin: 2rem 0; margin: 2rem 0;
border: none; border: none;
border-top: 2px solid #e9ecef; border-top: 2px solid #e9ecef;
} }
.text-center {
text-align: center;
}
.mt-4 { .mt-4 {
margin-top: 2rem; margin-top: 2rem;
} }
@@ -388,7 +383,7 @@
<li><a href="#architecture">Architecture</a></li> <li><a href="#architecture">Architecture</a></li>
<li><a href="#status">Status</a></li> <li><a href="#status">Status</a></li>
<li><a href="#get-involved">Get Involved</a></li> <li><a href="#get-involved">Get Involved</a></li>
<li><a href="https://github.com/aeris10/aeris-radar" target="_blank">GitHub</a></li> <li><a href="https://github.com/NawfalMotii79/PLFM_RADAR" target="_blank">GitHub</a></li>
</ul> </ul>
</div> </div>
</nav> </nav>
@@ -397,6 +392,9 @@
<h1>AERIS-10 <span>Open Source</span><br>Phased Array Radar</h1> <h1>AERIS-10 <span>Open Source</span><br>Phased Array Radar</h1>
<p>A low-cost, hackable 10.5 GHz phased array radar system with Pulse LFM modulation. Designed for researchers, drone developers, and serious SDR enthusiasts.</p> <p>A low-cost, hackable 10.5 GHz phased array radar system with Pulse LFM modulation. Designed for researchers, drone developers, and serious SDR enthusiasts.</p>
<!-- ADDED: Main radar image -->
<img src="img/radar-main.jpg" alt="AERIS-10 Radar System" class="hero-image" onerror="this.style.display='none'">
<div class="hero-badges"> <div class="hero-badges">
<span class="badge">🔓 Open Source</span> <span class="badge">🔓 Open Source</span>
<span class="badge">📡 10.5 GHz</span> <span class="badge">📡 10.5 GHz</span>
@@ -405,12 +403,12 @@
</div> </div>
<div class="badges-row"> <div class="badges-row">
<a href="https://github.com/aeris10/aeris-radar" class="github-badge"> <a href="https://github.com/NawfalMotii79/PLFM_RADAR" class="github-badge">
<svg height="20" viewBox="0 0 16 16" width="20" fill="white"><path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"></path></svg> <svg height="20" viewBox="0 0 16 16" width="20" fill="white"><path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"></path></svg>
Star on GitHub Star on GitHub
</a> </a>
<a href="#" class="github-badge" style="background:#00d4ff; color:#1a1a2e;">📖 Documentation</a> <a href="https://github.com/NawfalMotii79/PLFM_RADAR/blob/main/README.md" class="github-badge" style="background:#00d4ff; color:#1a1a2e;">📖 Documentation</a>
<a href="#" class="github-badge" style="background:#ff4757;">🐛 Report Bug</a> <a href="https://github.com/NawfalMotii79/PLFM_RADAR/issues" class="github-badge" style="background:#ff4757;">🐛 Report Bug</a>
</div> </div>
</section> </section>
@@ -420,6 +418,11 @@
<p>Democratizing radar technology through open-source hardware and software</p> <p>Democratizing radar technology through open-source hardware and software</p>
</div> </div>
<!-- ADDED: Antenna array image -->
<div style="text-align: center; margin-bottom: 2rem;">
<img src="img/antenna-array.jpg" alt="AERIS-10 Antenna Array" style="max-width: 100%; border-radius: 10px;" onerror="this.style.display='none'">
</div>
<div class="cards-grid"> <div class="cards-grid">
<div class="card"> <div class="card">
<div class="card-icon">🎯</div> <div class="card-icon">🎯</div>
@@ -465,7 +468,7 @@
<tr><td><strong>Antenna Type</strong></td><td>8×16 Patch Array</td><td>32×16 Slotted Waveguide</td></tr> <tr><td><strong>Antenna Type</strong></td><td>8×16 Patch Array</td><td>32×16 Slotted Waveguide</td></tr>
<tr><td><strong>Beam Steering</strong></td><td>Electronic (±45°)</td><td>Electronic (±45°)</td></tr> <tr><td><strong>Beam Steering</strong></td><td>Electronic (±45°)</td><td>Electronic (±45°)</td></tr>
<tr><td><strong>Mechanical Scan</strong></td><td>360° (stepper motor)</td><td>360° (stepper motor)</td></tr> <tr><td><strong>Mechanical Scan</strong></td><td>360° (stepper motor)</td><td>360° (stepper motor)</td></tr>
<tr><td><strong>Output Power</strong></td><td>~1W</td><td>10W (GaN amplifier)</td></tr> <tr><td><strong>Output Power</strong></td><td>~1W×16</td><td>10W×16 (GaN amplifier)</td></tr>
<tr><td><strong>Processing</strong></td><td>FPGA + STM32</td><td>FPGA + STM32</td></tr> <tr><td><strong>Processing</strong></td><td>FPGA + STM32</td><td>FPGA + STM32</td></tr>
</tbody> </tbody>
</table> </table>
@@ -478,6 +481,11 @@
<p>Modular design with specialized components for optimal performance</p> <p>Modular design with specialized components for optimal performance</p>
</div> </div>
<!-- ADDED: System diagram -->
<div style="text-align: center; margin-bottom: 2rem;">
<img src="img/system-diagram.png" alt="System Architecture Diagram" style="max-width: 100%; border-radius: 10px;" onerror="this.style.display='none'">
</div>
<div class="architecture"> <div class="architecture">
<pre> <pre>
┌─────────────────────────────────────────────────────────────┐ ┌─────────────────────────────────────────────────────────────┐
@@ -507,6 +515,11 @@
</pre> </pre>
</div> </div>
<!-- ADDED: GUI Demo GIF -->
<div style="text-align: center; margin: 2rem 0;">
<img src="img/gui-demo.gif" alt="AERIS-10 GUI Demo" class="demo-image" onerror="this.style.display='none'">
</div>
<div class="cards-grid mt-4"> <div class="cards-grid mt-4">
<div class="card"> <div class="card">
<h3>📡 Power Management Board</h3> <h3>📡 Power Management Board</h3>
@@ -589,7 +602,7 @@
<a href="#" class="btn btn-outline">Discord Community</a> <a href="#" class="btn btn-outline">Discord Community</a>
<a href="#" class="btn btn-outline">GitHub Discussions</a> <a href="#" class="btn btn-outline">GitHub Discussions</a>
<a href="#" class="btn btn-outline">Twitter @AERIS10Radar</a> <a href="#" class="btn btn-outline">Twitter @AERIS10Radar</a>
<a href="#" class="btn btn-primary">Contribute on GitHub</a> <a href="https://github.com/NawfalMotii79/PLFM_RADAR" class="btn btn-primary">Contribute on GitHub</a>
</div> </div>
</div> </div>
</div> </div>
@@ -626,18 +639,23 @@
<p>Common issues and solutions.</p> <p>Common issues and solutions.</p>
</div> </div>
</div> </div>
<!-- ADDED: Sponsor logo -->
<div style="text-align: center; margin-top: 3rem;">
<img src="img/pcbway-logo.jpg" alt="PCBWay Sponsor" class="sponsor-image" onerror="this.style.display='none'">
</div>
</div> </div>
<footer class="footer"> <footer class="footer">
<div class="social-links"> <div class="social-links">
<a href="#">GitHub</a> <a href="https://github.com/NawfalMotii79/PLFM_RADAR">GitHub</a>
<a href="#">Discord</a> <a href="#">Discord</a>
<a href="#">Twitter</a> <a href="#">Twitter</a>
<a href="#">Documentation</a> <a href="https://github.com/NawfalMotii79/PLFM_RADAR/blob/main/README.md">Documentation</a>
<a href="#">Contact</a> <a href="#">Contact</a>
</div> </div>
<p>© 2025 AERIS-10 Project. Open source hardware and software.</p> <p>© 2025 AERIS-10 Project. Open source hardware and software.</p>
<p style="margin-top: 1rem; font-size: 0.9rem; opacity: 0.7;">Licensed under MIT License | Built with ❤️ for the open-source community</p> <p style="margin-top: 1rem; font-size: 0.9rem; opacity: 0.7;">Hardware: CERN-OHL-P | Software: MIT | Built with ❤️ for the open-source community</p>
</footer> </footer>
</body> </body>
</html> </html>