-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (64 loc) · 1.92 KB
/
index.html
File metadata and controls
70 lines (64 loc) · 1.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>The Open System Shell Menu</title>
<style>
body {
margin: 0;
font-family: 'Courier New', monospace;
background-color: #1e1e1e;
color: #00ff99;
}
header {
background-color: #000;
padding: 1rem;
text-align: center;
border-bottom: 2px solid #00ff99;
}
.shell-menu {
display: flex;
flex-direction: column;
padding: 2rem;
}
.menu-item {
padding: 0.5rem 1rem;
margin: 0.5rem 0;
border: 1px solid #00ff99;
background-color: #111;
cursor: pointer;
transition: background 0.3s;
}
.menu-item:hover {
background-color: #00ff99;
color: #111;
}
.content {
padding: 2rem;
border-top: 2px solid #00ff99;
}
</style>
</head>
<body>
<header>
<h1>🖥️ The Open System</h1>
<p>Web-based Shell Menu Interface</p>
</header>
<div class="shell-menu">
<div class="menu-item">📁 Welcome</div>
<div class="menu-item">🔆 SolarPads Technology</div>
<div class="menu-item">🌐 Mars Preserve Holdings</div>
<div class="menu-item">🧠 AI & Blockchain</div>
<div class="menu-item">📜 System Logs</div>
</div>
<div class="content">
<h2>Welcome</h2>
<p>Thanks for taking the time to explore The Open System—an interface for futuristic tech, solar engineering, and digital asset management.</p>
<h2>SolarPads Technology Development</h2>
<p>Engineering solar pads for Electric Solar Powered Vehicles (ESPV). Modular, efficient, and built for the future of clean mobility.</p>
<h2>Mars Preserve Digital Holdings</h2>
<p>Exploring NFT-based digital asset holdings and decentralized identity systems. Mars Preserve is your gateway to blockchain-powered preservation.</p>
</div>
</body>
</html>