-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
32 lines (30 loc) · 1.51 KB
/
about.php
File metadata and controls
32 lines (30 loc) · 1.51 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"/>
<title>About — Maze Solver</title>
<link rel="stylesheet" href="./styles.css"/>
</head>
<body>
<main class="layout" style="grid-template-columns: 1fr; inset: 0; position: static; padding: 20px;">
<section class="panel left" style="max-width: 860px; margin: 40px auto;">
<div class="card">
<h2>Maze Solver</h2>
<p>Navigate through the maze and find the exit as quickly as possible. This 3D version features animated tiles, cinematic camera, hints, and an auto-solve mode powered by A* pathfinding.</p>
<ul>
<li>Random Maze Generation</li>
<li>Timer and Scoring System</li>
<li>Responsive Design</li>
<li>3D Graphics with Three.js</li>
</ul>
<hr/>
<p>For support, licensing, or custom development inquiries: <a href="mailto:help@rskworld.in">help@rskworld.in</a> • Phone/WhatsApp: <a href="https://wa.me/919330539277" target="_blank" rel="noopener">+91 9330539277</a></p>
<p>Website: <a href="https://rskworld.in" target="_blank" rel="noopener">RSK World</a> • Business Inquiries: <a href="mailto:help@rskworld.in">help@rskworld.in</a></p>
<p>🤝 Contributing: Suggestions and improvements are welcome!</p>
<p><a class="primary" href="./index.php">Back to Game</a></p>
</div>
</section>
</main>
</body>
</html>