forked from DuoAlly/DuoAlly.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
115 lines (108 loc) · 4.56 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
115
<!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="icon" type="image/jpeg" href="./images/bot_icon.jpg">
<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">
<div class="robot-container">
<div class="robot-head">
<div class="antenna"></div>
<div class="antenna-oval"></div>
<div class="head-outline">
<div class="ear left"></div>
<div class="ear right"></div>
<div class="eye left"></div>
<div class="eye right"></div>
</div>
</div>
</div>
<h1 style="font-size: 2.5rem;">DuoAlly AI</h1>
<p>Revolutionizing single-player gaming with intelligent AI allies</p>
</div>
</header>
<nav>
<div class="container nav-content">
<a href="index.html" class="nav-logo">DuoAlly</a>
<ul class="nav-links">
<li><a href="index.html" class="active">Home</a></li>
<li><a href="careers.html">Careers</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<section id="about">
<div class="container">
<div class="section-header" data-aos="fade-up">
<h1 style="font-size: 2.5rem; margin-bottom: 1rem; text-align: center; padding: 2rem 0;">DuoAlly AI</h1>
<p>Pioneering the future of gaming duos</p>
</div>
<div class="card" data-aos="fade-up" data-aos-delay="100">
<p>DuoAlly AI is pioneering the next generation of AI allies 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/DuoAlly.jpg" alt="DuoAlly AI" class="section-image" width="400px" height="450px">
</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>
<img src="images/about.jpg" alt="About DuoAlly AI" class="features-image" width="400px" height="450px">
</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 duos.</p>
</div>
</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>