-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathShowcase.html
More file actions
137 lines (131 loc) · 8.47 KB
/
Showcase.html
File metadata and controls
137 lines (131 loc) · 8.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>South Brunswick Aerospace Team</title>
<link rel="stylesheet" href="style.css">
<script src="main.js" defer></script>
</head>
<body>
<header id="header" role="banner">
<div class="header-container">
<div class="logo">
<img src="./assets/logo/gold-logo.png"
alt="South Brunswick Aerospace Team Logo - Gold rocket emblem" width="50" height="50">
<div class="logo-text">SB Aerospace</div>
</div>
<button class="mobile-nav-toggle" id="mobileNavToggle" aria-label="Toggle mobile navigation menu"
aria-expanded="false">☰</button>
<nav role="navigation" aria-label="Main navigation">
<ul id="navMenu">
<li><a href="Home.html" aria-label="Go to homepage">Home</a></li>
<li><a href="AboutUs.html" aria-label="Learn about our team">About Us</a></li>
<li><a href="Showcase.html" aria-label="View our aerospace projects">Our Work</a></li>
<li><a href="Achievements.html" aria-label="Explore our specialized teams">Teams</a></li>
<li><a href="Sponsorship.html" aria-label="Become a team sponsor">Sponsor</a></li>
<li><a href="Donation.html" aria-label="Make a donation">Donate</a></li>
<li><a href="Contact.html" aria-label="Contact our team">Contact</a></li>
<!--<li><a href="Legal.html" aria-label="View our legal documents">Legal</a></li>-->
</ul>
</nav>
</div>
</header>
<main>
<section class="showcase" id="showcase" aria-labelledby="showcase-heading">
<div class="container">
<div class="section-title">
<h2 id="showcase-heading">Our Aerospace Engineering Projects</h2>
<p class="section-subtitle">Innovative solutions in rocketry, avionics, and aerospace
technology</p>
</div>
<div class="showcase-grid">
<article class="showcase-card">
<img src="./assets/showcase/Airbrakes.png"
alt="CAD model of our custom airbrake implementation for precision altitude control"
width="300" height="200" loading="lazy">
<h3>Precision Airbrakes System</h3>
<p>Our innovative airbrakes implementation enables precise altitude targeting with
high accuracy during American Rocketry Challenge competitions, featuring
advanced aerodynamic design and real-time control systems.</p>
</article>
<article class="showcase-card">
<img src="./assets/showcase/CircuitSpace.png"
alt="CircuitSpace UI showing our custom circuit planning software for rocket avionics"
width="300" height="200" loading="lazy">
<h3>CircuitSpace Avionics Planner</h3>
<p>Our custom-built circuit planning software designed specifically for rocketry
teams to easily design, plan, and visualize complex avionics setups and
electrical systems for competition rockets.</p>
</article>
<article class="showcase-card">
<img src="./assets/showcase/Rocket++.png"
alt="Code editor showing our custom C++ library for rocket control systems"
width="300" height="200" loading="lazy">
<h3>Rocket++ Control Library</h3>
<p>Our proprietary C++ software library developed to streamline the configuration
and control of airbrakes, recovery systems, and other critical rocket
subsystems with efficient, reliable code.</p>
</article>
<article class="showcase-card">
<img src="./assets/showcase/Rocket.jpeg"
alt="Our completed competition rocket ready for American Rocketry Challenge launch"
width="300" height="200" loading="lazy">
<h3>Competition Rocket Build</h3>
<p>Our fully assembled competition rocket representing hundreds of hours of
engineering design, precision manufacturing, and rigorous testing by our
dedicated aerospace team members.</p>
</article>
<article class="showcase-card">
<img src="./assets/showcase/CFD.jpg"
alt="CFD simulation analysis of our airbrakes system showing airflow dynamics"
width="300" height="200" loading="lazy">
<h3>Computational Fluid Dynamics (CFD)</h3>
<p>Advanced CFD analysis and simulation to optimize drag characteristics and flight
dynamics of our rocket systems, ensuring peak performance and safety in
competitive launches.</p>
</article>
</div>
</div>
</section>
</main>
<footer role="contentinfo">
<div class="footer-grid">
<div class="footer-column">
<h3>South Brunswick Aerospace Team</h3>
<p>Pushing aerospace engineering boundaries through innovation, teamwork, and dedication in
competitive rocketry and STEM education.</p>
</div>
<div class="footer-column">
<h3>Site Navigation</h3>
<nav aria-label="Footer navigation">
<ul class="footer-links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#showcase">Our Work</a></li>
<li><a href="#achievements">Teams</a></li>
<li><a href="#sponsorship">Sponsor</a></li>
<li><a href="#donation">Donate</a></li>
</ul>
</nav>
</div>
<div class="footer-column">
<h3>Connect With Us</h3>
<nav aria-label="Social media navigation">
<ul class="footer-links">
<li><a href="#" rel="noopener">Facebook</a></li>
<li><a href="#" rel="noopener">Instagram</a></li>
<li><a href="#" rel="noopener">LinkedIn</a></li>
<li><a href="#" rel="noopener">YouTube</a></li>
</ul>
</nav>
</div>
</div>
<div class="copyright">
<p>© 2025 South Brunswick Aerospace Team. All Rights Reserved. Developed by <a
href="https://github.com/samuel-asefa" target="_blank" rel="noopener"
style="color: var(--gold);">Sammy</a>.</p>
</div>
</footer>
</body>
</html>