-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (95 loc) · 3.87 KB
/
index.html
File metadata and controls
106 lines (95 loc) · 3.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BubbleLabs | Dev Hub</title>
<style>
body {
background-color: #0d1117;
color: #c9d1d9;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
padding: 5vw;
line-height: 1.6;
}
.container { max-width: 900px; margin: auto; }
.card {
border: 2px solid #33ddff;
border-radius: 12px;
padding: 30px;
margin-bottom: 30px;
background: #161b22;
transition: transform 0.2s, border-color 0.2s;
}
.card:hover {
border-color: #ffffff;
transform: translateY(-5px);
}
h1 { color: #33ddff; font-size: 2.5em; margin-bottom: 10px; }
h2 { color: #ffffff; margin-top: 0; }
p { color: #8b949e; }
.btn {
display: inline-block;
background: #33ddff;
color: #0d1117;
padding: 12px 24px;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
margin-top: 15px;
}
.status-pill {
display: inline-block;
padding: 4px 12px;
border-radius: 20px;
font-size: 0.75em;
font-weight: bold;
text-transform: uppercase;
margin-bottom: 15px;
margin-right: 8px;
}
.stable { background: #238636; color: white; }
.warning { background: #ff9100; color: #0d1117; }
.dev { background: #8957e5; color: white; }
footer { text-align: center; margin-top: 50px; font-size: 0.8em; color: #484f58; }
</style>
</head>
<body>
<div class="container">
<h1>BubbleLabs</h1>
<p>Official Developer Hub | Projects by <strong>Bubble1296</strong></p>
<hr style="border: 0; border-top: 1px solid #30363d; margin: 40px 0;">
<div class="card">
<span class="status-pill stable">Latest Release: v1.3.0</span>
<span class="status-pill warning">WIP: v1.4.0</span>
<h2>🖥️ BubbleOS</h2>
<p>The operating and desktop environment. Version 1.3.0 introduces enhanced apps and UI. Version 1.4.0 is currently in development.</p>
<a href="https://github.com/Bubble1296/BubbleOS" class="btn">Download via GitHub</a>
</div>
<div class="card">
<span class="status-pill stable">Latest Release: v1.0.0</span>
<h2>🫧 BubbleScript</h2>
<p>A Python-based programming language featuring the signature "Bubble" output engine and custom macro definitions.</p>
<a href="https://github.com/Bubble1296/BubbleScript" class="btn">Download via GitHub</a>
</div>
<div class="card" style="opacity: 0.7; border-style: dashed;">
<span class="status-pill warning">Coming Soon</span>
<h2>🛰️ BubbleNexus</h2>
<p>A specialized environment aimed at providing high-performance processing similar to IBM i (AS/400) architecture.</p>
</div>
<div class="card" style="opacity: 0.7; border-style: dashed;">
<span class="status-pill warning">Coming Soon</span>
<h2>🧠 BubbleCoreAI</h2>
<p>Light, fast, and powerful AI.</p>
</div>
<div class="card" style="opacity: 0.7; border-style: dashed;">
<span class="status-pill warning">Coming Soon</span>
<h2>✈️ BubbleFS</h2>
<p>A lightweight, Python flight simulator currently in the early devlopment phase.</p>
</div>
<footer>
© 2026 BubbleLabs by Bubble1296. All rights reserved.
</footer>
</div>
</body>
</html>