-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (65 loc) · 2.44 KB
/
index.html
File metadata and controls
69 lines (65 loc) · 2.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QuantumMind AI - Mental Resilience for Space Tourism</title>
<link rel="stylesheet" href="css/home.css">
</head>
<body>
<!-- Animated Background -->
<canvas class="particles" id="particles"></canvas>
<!-- Header -->
<header>
<img src="img/Logo.png" alt=" RALogo" class="ra-logo">
<nav>
<a href="index.html">Home</a>
<a href="features.html">Features</a>
<a href="demo.html">Demo</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</nav>
</header>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="hero-content">
<h1>QuantumMind AI: Your Mental Spacesuit</h1>
<p>AI-powered VR/AR resilience training for next-generation space tourists. Mitigate psychological stress through adaptive simulations and real-time biofeedback.</p>
<a href="#features" class="cta-button">Explore Technology</a>
</div>
</section>
<!-- Features Section -->
<section class="features" id="features">
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">🛸</div>
<h3>VR Emergency Training</h3>
<p>Immersive simulations for critical scenarios like oxygen leaks and system failures</p>
</div>
<div class="feature-card">
<div class="feature-icon">🧠</div>
<h3>AI Stress Detection</h3>
<p>Real-time biometric monitoring with adaptive response algorithms</p>
</div>
<div class="feature-card">
<div class="feature-icon">👨🚀</div>
<h3>AR Guidance System</h3>
<p>On-demand coping strategies overlay for critical situations</p>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="footer-content">
<p>© 2025 AIMTY. All rights reserved.</p>
<div class="footer-links">
<a href="#privacy">Privacy Policy</a>
<a href="#terms">Terms of Service</a>
<a href="contact.html">Contact Support</a>
</div>
</div>
</footer>
<script src="js/home.js"></script>
</body>
</html>