-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
311 lines (285 loc) · 14.1 KB
/
team.html
File metadata and controls
311 lines (285 loc) · 14.1 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
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Our Team - AgentLab</title>
<link rel="stylesheet" href="css/main.css">
<style>
.team-hero {
background: var(--navy);
color: white;
text-align: center;
padding: 5rem 0;
position: relative;
overflow: hidden;
}
.team-hero::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: radial-gradient(ellipse at 30% 50%, rgba(255, 105, 0, 0.15) 0%, transparent 60%);
pointer-events: none;
}
.team-hero .container { position: relative; z-index: 1; }
.team-hero h1 { font-size: 3rem; margin-bottom: 1rem; font-weight: 800; letter-spacing: -1px; }
.team-hero p { font-size: 1.15rem; opacity: 0.85; max-width: 600px; margin: 0 auto; line-height: 1.6; }
.team-section { padding: 4rem 0; }
.team-section:nth-child(even) { background: var(--bg-alt); }
.team-section h2 { text-align: center; font-size: 2.25rem; margin-bottom: 1rem; color: var(--navy); font-weight: 700; letter-spacing: -0.5px; }
.team-section .section-description { text-align: center; font-size: 1.05rem; color: var(--text-muted); margin-bottom: 3rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.team-card {
background: white;
border-radius: var(--radius);
padding: 2rem;
text-align: center;
border: 1px solid var(--border);
transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-photo {
width: 80px; height: 80px;
border-radius: 50%;
background: var(--navy);
margin: 0 auto 1.25rem;
display: flex; align-items: center; justify-content: center;
color: white; font-size: 1.5rem; font-weight: 700;
}
.team-name { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; }
.team-role { color: var(--orange); font-weight: 600; margin-bottom: 0.75rem; font-size: 0.9rem; }
.team-description { color: var(--text-muted); line-height: 1.6; font-size: 0.925rem; }
.stats-section {
background: var(--navy);
color: white;
padding: 3rem 0;
text-align: center;
position: relative;
overflow: hidden;
}
.stats-section::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: radial-gradient(ellipse at 50% 50%, rgba(255, 105, 0, 0.1) 0%, transparent 60%);
pointer-events: none;
}
.stats-section .container { position: relative; z-index: 1; }
.stats-section h2 { color: white; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
.stat-card { background: rgba(255,255,255,0.08); padding: 1.5rem; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.1); }
.stat-card .stat-number { font-size: 2.25rem; font-weight: 800; display: block; margin-bottom: 0.35rem; color: var(--orange); }
.stat-card .stat-label { font-size: 0.8rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 500; }
.research-areas { background: var(--bg-alt); padding: 4rem 0; }
.research-areas h2 { text-align: center; font-size: 2.25rem; color: var(--navy); font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.5px; }
.research-areas .section-description { text-align: center; color: var(--text-muted); font-size: 1.05rem; margin-bottom: 2.5rem; }
.research-area-card { background: white; border-radius: var(--radius); padding: 1.75rem; margin-bottom: 1.25rem; border-left: 4px solid var(--orange); border: 1px solid var(--border); border-left: 4px solid var(--orange); }
.research-area-title { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.5rem; font-weight: 700; }
.research-area-description { color: var(--text-muted); font-size: 0.925rem; line-height: 1.6; }
.join-team-cta {
background: var(--navy);
color: white;
padding: 4rem 0;
text-align: center;
position: relative;
overflow: hidden;
}
.join-team-cta::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: radial-gradient(ellipse at 50% 50%, rgba(255, 105, 0, 0.12) 0%, transparent 60%);
pointer-events: none;
}
.join-team-cta .container { position: relative; z-index: 1; }
.join-team-cta h2 { margin-bottom: 1rem; color: white; font-size: 2.25rem; font-weight: 700; }
.join-team-cta p { font-size: 1.1rem; margin-bottom: 2rem; opacity: 0.85; line-height: 1.6; }
/* Timeline */
.timeline { max-width: 700px; margin: 0 auto; }
.timeline-entry {
display: flex;
gap: 2rem;
padding: 1.5rem 0;
border-bottom: 1px solid var(--border);
}
.timeline-entry:last-child { border-bottom: none; }
.timeline-term {
font-weight: 700;
color: var(--navy);
font-size: 0.95rem;
min-width: 120px;
flex-shrink: 0;
padding-top: 0.15rem;
}
.timeline-members {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
.timeline-member {
background: var(--bg-alt);
border: 1px solid var(--border);
padding: 0.4rem 0.9rem;
border-radius: 6px;
font-size: 0.875rem;
color: var(--navy);
font-weight: 600;
}
.timeline-role {
color: var(--text-muted);
font-weight: 400;
margin-left: 0.25rem;
}
@media (max-width: 768px) {
.team-hero h1 { font-size: 2.25rem; }
.team-grid { grid-template-columns: 1fr; }
.timeline-entry { flex-direction: column; gap: 0.75rem; }
.timeline-term { min-width: unset; }
}
</style>
</head>
<body>
<!-- Header -->
<header>
<nav class="container">
<a href="index.html" class="logo">Agent<span>Lab</span></a>
<ul class="nav-links">
<li><a href="projects.html">Projects</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="news.html">News</a></li>
</ul>
</nav>
</header>
<!-- Breadcrumb -->
<nav class="breadcrumb">
<div class="container">
<a href="index.html">Home</a> > Team
</div>
</nav>
<!-- Hero Section -->
<section class="team-hero">
<div class="container">
<h1>Our Team</h1>
<p>Student developers building multi-agent AI systems for education at Gies College of Business</p>
</div>
</section>
<!-- Current Team -->
<section class="team-section">
<div class="container">
<h2>Spring 2026</h2>
<p class="section-description">Current team</p>
<div class="team-grid">
<div class="team-card">
<div class="team-photo">KD</div>
<div class="team-name">Keshav Dalmia</div>
<div class="team-role">AI Developer</div>
<div class="team-description">Building at the intersection of data, business, and AI. Graduate student at Gies College of Business.</div>
<div style="margin-top: 1rem;"><a href="https://github.com/keshavdalmia10" class="read-more" target="_blank">GitHub →</a></div>
</div>
<div class="team-card">
<div class="team-photo">AC</div>
<div class="team-name">Ash Castelino</div>
<div class="team-role">AI Developer</div>
<div class="team-description">Builder. Developing AI-powered educational tools and multi-agent systems.</div>
<div style="margin-top: 1rem;"><a href="https://github.com/ashcastelinocs124" class="read-more" target="_blank">GitHub →</a></div>
</div>
</div>
</div>
</section>
<!-- Timeline -->
<section class="team-section">
<div class="container">
<h2>Team Timeline</h2>
<p class="section-description">AgentLab teams rotate each semester. Here's who built what.</p>
<div class="timeline">
<div class="timeline-entry">
<div class="timeline-term">Fall 2025</div>
<div class="timeline-members">
<span class="timeline-member">Kumuda Subramanyam <span class="timeline-role">Builder & UI/UX</span></span>
<span class="timeline-member">Keshav Dalmia <span class="timeline-role">AI Developer</span></span>
</div>
</div>
<div class="timeline-entry">
<div class="timeline-term">Summer 2025</div>
<div class="timeline-members">
<span class="timeline-member">Kumuda Subramanyam <span class="timeline-role">Builder & UI/UX</span></span>
<span class="timeline-member">Jeremy Samuel <span class="timeline-role">Full-Stack Engineer</span></span>
</div>
</div>
<div class="timeline-entry">
<div class="timeline-term">Spring 2025</div>
<div class="timeline-members">
<span class="timeline-member">Shravani Immidi <span class="timeline-role">Systems Developer</span></span>
<span class="timeline-member">Manas Tokale <span class="timeline-role">Framework & Search</span></span>
<span class="timeline-member">Shatakshi Bhatnagar <span class="timeline-role">Docs & Workflow</span></span>
<span class="timeline-member">Rohan Marwaha <span class="timeline-role">Infrastructure</span></span>
</div>
</div>
</div>
</div>
</section>
<!-- Focus Areas -->
<section class="research-areas">
<div class="container">
<h2>Focus Areas</h2>
<p class="section-description">Our interdisciplinary work spans multiple domains in AI and education</p>
<div class="research-area-card">
<h3 class="research-area-title">Multi-Agent Systems in Education</h3>
<p class="research-area-description">Developing teams of specialized AI agents that work together to provide personalized learning experiences and educational support.</p>
</div>
<div class="research-area-card">
<h3 class="research-area-title">Educational Technology & Learning Analytics</h3>
<p class="research-area-description">Building metrics and methodologies to measure the effectiveness of AI-powered educational interventions on student learning outcomes.</p>
</div>
<div class="research-area-card">
<h3 class="research-area-title">Entrepreneurship Education</h3>
<p class="research-area-description">Creating AI systems that accelerate entrepreneurship learning by providing real-time coaching and feedback throughout the startup development process.</p>
</div>
<div class="research-area-card">
<h3 class="research-area-title">Human-AI Interaction</h3>
<p class="research-area-description">Designing how students interact with AI tutoring systems and creating interfaces that promote effective learning partnerships between humans and AI.</p>
</div>
</div>
</section>
<!-- Join Team CTA -->
<section class="join-team-cta">
<div class="container">
<h2>Join Our Team</h2>
<p>We're always looking for passionate students and developers to join our mission of transforming education through AI</p>
<div class="cta-buttons">
<a href="mailto:contact@agentlab.edu" class="btn btn-primary">Contact Us</a>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h3>Navigation</h3>
<a href="projects.html">Projects</a>
<a href="team.html">Team</a>
<a href="news.html">News</a>
</div>
<div class="footer-section">
<h3>Projects</h3>
<a href="venturebot.html">VentureBots</a>
<a href="pathshaper.html">PathShaper</a>
<a href="canvas-mcp.html">Canvas MCP</a>
<a href="illiniclaw.html">IlliniClaw</a>
</div>
<div class="footer-section">
<h3>Connect</h3>
<a href="mailto:contact@agentlab.edu">Contact Us</a>
<a href="https://github.com/gies-ai-experiments" target="_blank">GitHub</a>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 AgentLab — Gies College of Business, University of Illinois</p>
</div>
</div>
</footer>
<script src="js/main.js"></script>
<script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "f6e8d77284b0466eb2ca753f03d64ec0"}'></script>
</body>
</html>