First commit

This commit is contained in:
RedGrox
2026-05-11 13:12:17 +00:00
commit 5da69356d3
6 changed files with 311 additions and 0 deletions
+60
View File
@@ -0,0 +1,60 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AloeGames</title>
<link rel="icon" href="images/favicon.ico">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<canvas id="bgCanvas"></canvas>
<header>
<div class="logo">
<!-- <img src="images/logo.png" height="30"> -->
AloeGames
</div>
<div class="lang-switch" onclick="toggleLang()">RU / EN</div>
</header>
<section class="hero">
<img src="images/logo.png" height="400">
<h1 id="title">We Build Worlds</h1>
<p id="desc">AloeGames is a modern game development studio focused on creating immersive, next-generation
experiences.</p>
<!-- <button class="btn" id="button">Explore</button> -->
</section>
<section>
<h2 id="aboutTitle">About Us</h2>
<p id="aboutText">We are a team of passionate developers, designers, and dreamers. Our mission is to push the
boundaries of interactive entertainment and deliver unforgettable gaming experiences.</p>
</section>
<!--<section>
<h2 id="projectsTitle">Our Projects</h2>
<div class="grid">
<div class="card"><h3>Project One</h3><p>Next-gen action experience with stunning visuals.</p></div>
<div class="card"><h3>Project Two</h3><p>Multiplayer world with deep progression systems.</p></div>
<div class="card"><h3>Project Three</h3><p>Story-driven adventure with emotional narrative.</p></div>
</div>
</section>
<section>
<h2 id="contactTitle">Contact</h2>
<p id="contactText">Get in touch with us for partnerships, collaborations, or just to say hello.</p>
</section>-->
<footer>
© 2026 AloeGames. All rights reserved.
</footer>
<script src="js/app.js"></script>
</body>
</html>