|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8" /> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 6 | + <title>VoidStack-Dev</title> |
| 7 | + <link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=Inter:wght@400;600&display=swap" rel="stylesheet"> |
| 8 | + <style> |
| 9 | + body { |
| 10 | + margin: 0; |
| 11 | + font-family: 'Inter', sans-serif; |
| 12 | + background-color: #0b0c10; |
| 13 | + color: #c5c6c7; |
| 14 | + } |
| 15 | + header { |
| 16 | + background: #1f2833; |
| 17 | + padding: 2rem; |
| 18 | + text-align: center; |
| 19 | + border-bottom: 3px solid #66fcf1; |
| 20 | + } |
| 21 | + header h1 { |
| 22 | + font-family: 'Orbitron', sans-serif; |
| 23 | + color: #66fcf1; |
| 24 | + margin: 0; |
| 25 | + font-size: 2.5rem; |
| 26 | + } |
| 27 | + header p { |
| 28 | + margin-top: 0.5rem; |
| 29 | + font-size: 1.1rem; |
| 30 | + color: #45a29e; |
| 31 | + } |
| 32 | + section { |
| 33 | + padding: 2rem; |
| 34 | + max-width: 900px; |
| 35 | + margin: auto; |
| 36 | + } |
| 37 | + section h2 { |
| 38 | + color: #66fcf1; |
| 39 | + border-left: 4px solid #45a29e; |
| 40 | + padding-left: 1rem; |
| 41 | + margin-top: 2rem; |
| 42 | + } |
| 43 | + .projects, .team { |
| 44 | + display: grid; |
| 45 | + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); |
| 46 | + gap: 1.5rem; |
| 47 | + margin-top: 1rem; |
| 48 | + } |
| 49 | + .card { |
| 50 | + background: #1f2833; |
| 51 | + padding: 1.5rem; |
| 52 | + border-radius: 12px; |
| 53 | + box-shadow: 0 4px 12px rgba(0,0,0,0.3); |
| 54 | + } |
| 55 | + .card h3 { |
| 56 | + color: #fff; |
| 57 | + margin: 0 0 0.5rem; |
| 58 | + } |
| 59 | + .card p { |
| 60 | + color: #c5c6c7; |
| 61 | + font-size: 0.95rem; |
| 62 | + } |
| 63 | + footer { |
| 64 | + background: #1f2833; |
| 65 | + padding: 1rem; |
| 66 | + text-align: center; |
| 67 | + font-size: 0.9rem; |
| 68 | + color: #aaa; |
| 69 | + border-top: 1px solid #333; |
| 70 | + } |
| 71 | + a { |
| 72 | + color: #66fcf1; |
| 73 | + text-decoration: none; |
| 74 | + } |
| 75 | + a:hover { |
| 76 | + text-decoration: underline; |
| 77 | + } |
| 78 | + </style> |
| 79 | +</head> |
| 80 | +<body> |
| 81 | + <header> |
| 82 | + <h1>VoidStack-Dev</h1> |
| 83 | + <p>We build games, apps, websites, hardware projects & more.</p> |
| 84 | + </header> |
| 85 | + <section> |
| 86 | + <h2>🚀 About Us</h2> |
| 87 | + <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> |
| 88 | + </section> |
| 89 | + |
| 90 | + <section> |
| 91 | + <h2>💼 Projects</h2> |
| 92 | + <div class="projects"> |
| 93 | + <div class="card"> |
| 94 | + <h3>Zone 13</h3> |
| 95 | + <p>A tactical horror shooter built in Godot 4. Focused on atmosphere, terror, and deep mechanics.</p> |
| 96 | + </div> |
| 97 | + <div class="card"> |
| 98 | + <h3>Smart Fan</h3> |
| 99 | + <p>An IoT-based temperature-controlled fan system using Arduino and LM35 sensor.</p> |
| 100 | + </div> |
| 101 | + <div class="card"> |
| 102 | + <h3>VoidStack Website</h3> |
| 103 | + <p>The official site of VoidStack-Dev. Built with HTML, CSS, and hosted on GitHub Pages.</p> |
| 104 | + </div> |
| 105 | + </div> |
| 106 | + </section> |
| 107 | + |
| 108 | + <section> |
| 109 | + <h2>🧠 Our Team</h2> |
| 110 | + <div class="team"> |
| 111 | + <div class="card"> |
| 112 | + <h3>Akshvy</h3> |
| 113 | + <p>Founder & Game Dev. Loves horror atmospheres, code logic, and visual design. Building Zone 13.</p> |
| 114 | + </div> |
| 115 | + </div> |
| 116 | + </section> |
| 117 | + |
| 118 | + <section> |
| 119 | + <h2>📬 Contact</h2> |
| 120 | + <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> |
| 121 | + </section> |
| 122 | + |
| 123 | + <footer> |
| 124 | + © 2025 VoidStack-Dev — Built with code, powered by curiosity. |
| 125 | + </footer> |
| 126 | +</body> |
| 127 | +</html> |
0 commit comments