-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
128 lines (124 loc) Β· 3.43 KB
/
index.html
File metadata and controls
128 lines (124 loc) Β· 3.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>VoidStack-Dev</title>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=Inter:wght@400;600&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
font-family: 'Inter', sans-serif;
background-color: #0b0c10;
color: #c5c6c7;
}
header {
background: #1f2833;
padding: 2rem;
text-align: center;
border-bottom: 3px solid #66fcf1;
}
header h1 {
font-family: 'Orbitron', sans-serif;
color: #66fcf1;
margin: 0;
font-size: 2.5rem;
}
header p {
margin-top: 0.5rem;
font-size: 1.1rem;
color: #45a29e;
}
section {
padding: 2rem;
max-width: 900px;
margin: auto;
}
section h2 {
color: #66fcf1;
border-left: 4px solid #45a29e;
padding-left: 1rem;
margin-top: 2rem;
}
.projects, .team {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
margin-top: 1rem;
}
.card {
background: #1f2833;
padding: 1.5rem;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.card h3 {
color: #fff;
margin: 0 0 0.5rem;
}
.card p {
color: #c5c6c7;
font-size: 0.95rem;
}
footer {
background: #1f2833;
padding: 1rem;
text-align: center;
font-size: 0.9rem;
color: #aaa;
border-top: 1px solid #333;
}
a {
color: #66fcf1;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>VoidStack-Dev</h1>
<p>We build games, apps, websites, hardware projects & more.</p>
</header>
<!-- <img src="banner for org.png" alt="VoidStack-Dev Banner" style="max-width: 100%; border-radius: 8px; margin-top: 1rem;" /> -->
<section>
<h2>π About Us</h2>
<p>VoidStack-Dev is a creative tech community of makers, developers, designers, and explorers from SLIET and beyond. Our mission is to create meaningful, fun, and innovative digital and physical projects β from games to websites to Arduino hardware hacks.</p>
</section>
<section>
<h2>πΌ Projects</h2>
<div class="projects">
<div class="card">
<h3>Zone 13</h3>
<p>A tactical horror shooter built in Godot 4. Focused on atmosphere, terror, and deep mechanics.</p>
</div>
<div class="card">
<h3>Smart Fan</h3>
<p>An IoT-based temperature-controlled fan system using Arduino and LM35 sensor.</p>
</div>
<div class="card">
<h3>VoidStack Website</h3>
<p>The official site of VoidStack-Dev. Built with HTML, CSS, and hosted on GitHub Pages.</p>
</div>
</div>
</section>
<section>
<h2>π§ Our Team</h2>
<div class="team">
<div class="card">
<h3>Akshvy</h3>
<p>Founder & Game Dev. Loves horror atmospheres, code logic, and visual design. Building Zone 13.</p>
</div>
</div>
</section>
<section>
<h2>π¬ Contact</h2>
<p>Want to collaborate or join our community? Email us at <a href="mailto:voidstack.dev@gmail.com">voidstack.dev@gmail.com</a> or connect via GitHub.</p>
</section>
<footer>
© 2025 VoidStack-Dev β Built with code, powered by curiosity.
</footer>
</body>
</html>