-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
141 lines (131 loc) · 6.6 KB
/
index.html
File metadata and controls
141 lines (131 loc) · 6.6 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
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project Aphelion - Open Source Space Tech</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Header -->
<header>
<div class="container">
<nav>
<a href="#" class="logo"><i class="fas fa-rocket"></i> Project Aphelion</a>
<ul class="nav-links">
<li><a href="#mission">Mission</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#support">Support Us</a></li>
<li><a href="https://github.com/Project-Aphelion" target="_blank" class="external-link">GitHub</a></li>
</ul>
<div class="menu-toggle">
<i class="fas fa-bars"></i>
</div>
</nav>
</div>
</header>
<!-- Hero Section -->
<section id="hero">
<div class="hero-bg"></div>
<div class="container">
<div class="hero-content">
<p class="hero-tagline">Exploring the edge of innovation</p>
<h1 class="hero-title">Project Aphelion</h1>
<p class="hero-subtitle">Building self-landing rockets from scratch through open-source innovation</p>
<div class="hero-buttons">
<a href="#projects" class="btn btn-primary">Explore Projects</a>
<a href="https://github.com/Project-Aphelion" class="btn" target="_blank">View on GitHub</a>
</div>
</div>
</div>
</section>
<!-- Mission Section -->
<section id="mission">
<div class="container">
<h2 class="section-title fade-in">Our Mission</h2>
<div class="mission-content fade-in">
<p>Build a self-landing rocket. From scratch.</p>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects">
<div class="container">
<h2 class="section-title fade-in">Our Projects</h2>
<!-- Big Project Banner Image -->
<div class="project-banner fade-in">
<img src="src/img/project-plan.png" alt="Project Aphelion Rockets" class="banner-img">
</div>
<div class="projects-grid">
<!-- Project 1 -->
<div class="project-card fade-in">
<img src="/api/placeholder/400/320" alt="Odysseus Project" class="project-img">
<div class="project-content">
<h3 class="project-title"><i class="fas fa-wrench"></i> Odysseus</h3>
<p class="project-description">
Our foundational proof-of-concept platform, designed to get hands-on with rocket construction and toolchains. Features a basic sugar-based rocket motor and an integrated parachute recovery system.
</p>
<a href="https://github.com/Project-Aphelion/Odysseus" class="project-link" target="_blank">
View Project <i class="fas fa-arrow-right"></i>
</a>
</div>
</div>
<!-- Project 2 -->
<div class="project-card fade-in">
<img src="/api/placeholder/400/320" alt="Kratos Project" class="project-img">
<div class="project-content">
<h3 class="project-title"><i class="fas fa-satellite"></i> Kratos</h3>
<p class="project-description">
Builds upon Odysseus, focusing on refining rocket dynamics and integrating our custom-built Thrust Vector Control (TVC) system for enhanced maneuverability. The goal: achieve stable and controlled flight.
</p>
<a href="https://github.com/Project-Aphelion/Kratos" class="project-link" target="_blank">
View Project <i class="fas fa-arrow-right"></i>
</a>
</div>
</div>
<!-- Project 3 -->
<div class="project-card fade-in">
<img src="/api/placeholder/400/320" alt="Ares Project" class="project-img">
<div class="project-content">
<h3 class="project-title"><i class="fas fa-rocket"></i> Ares</h3>
<p class="project-description">
The culmination of the Aphelion project arc, with a dual-motor configuration and integrated landing gear. Engineered for powered descent and recovery — achieving a self-propelled, soft landing.
</p>
<a href="https://github.com/Project-AphelionLabs/Ares" class="project-link" target="_blank">
View Project <i class="fas fa-arrow-right"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Support Section -->
<section id="support">
<div class="container">
<h2 class="section-title fade-in">Support Our Mission</h2>
<div class="support-content fade-in">
<p class="support-text">
We are funded entirely out of pocket so any support means the world to us! Check out our Patreon for exclusive designs, tests, source-code and other exciting content!
</p>
<a href="#" class="btn btn-primary">Join Our Patreon</a>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<ul class="social-links">
<li><a href="https://github.com/Project-Aphelion" target="_blank"><i class="fab fa-github"></i></a></li>
<li><a href="#" target="_blank"><i class="fab fa-patreon"></i></a></li>
<li><a href="#" target="_blank"><i class="fab fa-twitter"></i></a></li>
<li><a href="#" target="_blank"><i class="fab fa-youtube"></i></a></li>
</ul>
<p class="footer-text">
© 2025 Project Aphelion. All rights reserved. Powered by <a href="https://github.com/Project-Aphelion" target="_blank">Project-Aphelion</a>
</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>