-
Notifications
You must be signed in to change notification settings - Fork 1
/
features.html
61 lines (58 loc) · 2.52 KB
/
features.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Features - Space Station OS Documentation</title>
<link rel="stylesheet" href="styles.css">
<script src="scripts.js" defer></script>
</head>
<body>
<header class="top-nav">
<div class="nav-header">
<img src="assets/logo/SSOS_LogoMark_TextSide_White_BGBlack.png" alt="Space Station OS Logo" class="logo">
<h1>Space Station OS</h1>
</div>
</header>
<div class="container">
<aside class="sidebar">
<h2>Documentation</h2>
<ul>
<!-- Old Subpages -->
<li>
<a href="#" class="expandable open">Getting Started <span class="icon">-</span></a>
<ul class="nested visible">
<li><a href="requirements.html">Requirements</a></li>
<li><a href="setup.html">Setup</a></li>
</ul>
</li>
<li><a href="demos.html">Demos</a></li>
<li><a href="features.html" class="active">Features</a></li>
<li><a href="todos.html">TODOs</a></li>
<!-- New Subpages -->
<li><a href="packages.html">Packages</a></li>
<li><a href="concepts.html">Concepts</a></li>
<li><a href="troubleshooting.html">Troubleshooting</a></li>
<li><a href="blogs.html">Blogs</a></li>
<li><a href="release_notes.html">Release Notes</a></li>
<li><a href="faq.html">Frequently Asked Questions</a></li>
<li><a href="about.html">About</a></li>
</ul>
</aside>
<main class="content">
<h2>Features</h2>
<p>Space Station OS includes the following key features:</p>
<ul>
<li>Advanced Fault Detection, Isolation, and Recovery (FDIR) tools.</li>
<li>Real-time simulation and control for space station scenarios.</li>
<li>Support for ROS 2-based robotics systems.</li>
<li>Expandable architecture for community-driven development.</li>
</ul>
</main>
</div>
<footer>
<p>Contact us at <a href="mailto:[email protected]">[email protected]</a></p>
<p>© 2024 Space Station OS. Built with GitHub Pages.</p>
</footer>
</body>
</html>