forked from DuoAlly/DuoAlly.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (107 loc) · 4.8 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DuoAlly AI</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css" rel="stylesheet">
</head>
<body>
<header>
<div class="container header-content" data-aos="fade-up">
<h1>DuoAlly AI</h1>
<p>Revolutionizing single-player gaming with intelligent AI companions</p>
<img src="images/DuoAlly.jpg" alt="DuoAlly AI" class="header-image" width="300" height="300">
</div>
</header>
<nav>
<div class="container nav-content">
<a href="#" class="nav-logo">DuoAlly</a>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#research">Research</a></li>
</ul>
</div>
</nav>
<section id="about">
<div class="container">
<div class="section-header" data-aos="fade-up">
<h2>About DuoAlly AI</h2>
<p>Pioneering the future of gaming companionship</p>
</div>
<div class="card" data-aos="fade-up" data-aos-delay="100">
<p>DuoAlly AI is pioneering the next generation of AI companions for single-player gaming. Our AI-powered assistant provides players with an interactive, game-aware ally, designed to enhance solo experiences across multiple genres.</p>
<img src="images/about.jpg" alt="About DuoAlly AI" class="section-image" width="600" height="400">
</div>
</div>
</section>
<section id="features">
<div class="container">
<div class="section-header" data-aos="fade-up">
<h2>Features</h2>
<p>Experience gaming like never before</p>
</div>
<div class="features-grid">
<div class="card feature-card" data-aos="fade-up" data-aos-delay="100">
<h3>Game-Aware Chatbot</h3>
<p>An intelligent assistant that adapts in real time based on in-game events.</p>
</div>
<div class="card feature-card" data-aos="fade-up" data-aos-delay="200">
<h3>Genre-Specific Responses</h3>
<p>Tailored hints and support for different game genres.</p>
</div>
<div class="card feature-card" data-aos="fade-up" data-aos-delay="300">
<h3>Advanced Learning</h3>
<p>Continuously improves through player feedback and advanced algorithms.</p>
</div>
<div class="card feature-card" data-aos="fade-up" data-aos-delay="400">
<h3>Future Enhancements</h3>
<p>Plans for voice interactions and animated companions.</p>
</div>
</div>
</div>
</section>
<section id="team">
<div class="container">
<div class="section-header" data-aos="fade-up">
<h2>Our Team</h2>
<p>Meet the innovators behind DuoAlly AI</p>
</div>
<div class="card" data-aos="fade-up" data-aos-delay="100">
<p>Meet our dedicated and diverse team of experts in machine learning, gaming, and software development. Together, we aim to revolutionize the single-player gaming experience with innovative AI solutions.</p>
<img src="images/team.jpg" alt="DuoAlly Team" class="section-image" width="600" height="400">
</div>
</div>
</section>
<section id="research">
<div class="container">
<div class="section-header" data-aos="fade-up">
<h2>Research & Development</h2>
<p>Pushing the boundaries of AI in gaming</p>
</div>
<div class="card" data-aos="fade-up" data-aos-delay="100">
<h3>Current Research Areas</h3>
<ul class="research-list">
<li>Evaluation frameworks for AI in gaming using subjective and objective metrics</li>
<li>Novel approaches integrating Neo4j knowledge graphs for enhanced chatbot accuracy</li>
</ul>
</div>
</div>
</section>
<footer>
<div class="container footer-content">
<p>© 2025 DuoAlly AI | <a href="https://github.com/DuoAlly">GitHub Repository</a></p>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"></script>
<script>
AOS.init({
duration: 800,
once: true
});
</script>
</body>
</html>