-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (44 loc) · 2.06 KB
/
index.html
File metadata and controls
51 lines (44 loc) · 2.06 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Void-Start-OS - Official Site</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- GitHub アイコン(右上固定) -->
<a href="https://github.com/void-start-OS" target="_blank" class="github-link">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="32" height="32">
<path d="M10.226 17.284c-2.965-.36-5.054-2.493-5.054-5.256 0-1.123.404-2.336 1.078-3.144-.292-.741-.247-2.314.09-2.965.898-.112 2.111.36 2.83 1.01.853-.269 1.752-.404 2.853-.404 1.1 0 1.999.135 2.807.382.696-.629 1.932-1.1 2.83-.988.315.606.36 2.179.067 2.942.72.854 1.101 2 1.101 3.167 0 2.763-2.089 4.852-5.098 5.234.763.494 1.28 1.572 1.28 2.807v2.336c0 .674.561 1.056 1.235.786 4.066-1.55 7.255-5.615 7.255-10.646C23.5 6.188 18.334 1 11.978 1 5.62 1 .5 6.188.5 12.545c0 4.986 3.167 9.12 7.435 10.669.606.225 1.19-.18 1.19-.786V20.63a2.9 2.9 0 0 1-1.078.224c-1.483 0-2.359-.808-2.987-2.313-.247-.607-.517-.966-1.034-1.033-.27-.023-.359-.135-.359-.27 0-.27.45-.471.898-.471.652 0 1.213.404 1.797 1.235.45.651.921.943 1.483.943.561 0 .92-.202 1.437-.719.382-.381.674-.718.944-.943"></path>
</svg>
</a>
<header class="hero">
<h1>Void-Start-OS</h1>
<p>軽量・高速・美しい OS プロジェクト</p>
</header>
<nav class="navbar">
<a href="index.html">ホーム</a>
<a href="vsoapi/index.html">VSOAPI</a>
<a href="docs/kernel.html">ドキュメント</a>
<a href="download/os/">ダウンロード</a>
<a href="roadmap.html">ロードマップ</a>
</nav>
<main>
<section>
<h2>Void-Start-OS とは?</h2>
<p>軽量・高速・シンプルを追求した OS プロジェクトです。</p>
</section>
<section>
<h2>主要コンポーネント</h2>
<ul>
<li>VSOAPI(ユーザーランド API)</li>
<li>Kernel(例外処理・メモリ管理)</li>
<li>Bootloader(Void-Start-Boot)</li>
</ul>
</section>
</main>
<footer>
<p>© 2026 Void-Start-OS Project</p>
</footer>
</body>
</html>