-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
130 lines (122 loc) · 5.35 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!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/logo.jpg">
<link rel="stylesheet" href="style.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.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>Transforming gaming together with Artificial Intelligence (AI) duos and 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/cheerful.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 class="footer">
<div class="social-links">
<a href="https://github.com/DuoAlly" class="social-icon" target="_blank">
<i class="fab fa-github" aria-label="GitHub"></i>
</a>
<a href="https://x.com/DuoallyAI" class="social-icon" target="_blank">
<svg viewBox="0 0 24 24" aria-label="X">
<path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
</svg>
</a>
<a href="https://www.linkedin.com/company/duoally/" class="social-icon" target="_blank">
<i class="fab fa-linkedin" aria-label="LinkedIn"></i>
</a>
</div>
<div class="copyright">
© 2025 DuoAlly AI. All rights reserved.
</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>