-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
408 lines (388 loc) Β· 18.3 KB
/
index.html
File metadata and controls
408 lines (388 loc) Β· 18.3 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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>RoboNotts β Dependable Assistive Robotics</title>
<link rel="stylesheet" href="style.css" />
<style>
/* index-specific tweaks */
.hero-scroll-hint {
position: absolute;
bottom: 140px;
left: 50%;
transform: translateX(-50%);
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
animation: fadeUp 1s 0.8s ease both;
}
.scroll-dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--red);
animation: bounce 1.6s infinite;
}
@keyframes bounce {
0%, 100% { transform: translateY(0); opacity: 1; }
50% { transform: translateY(10px); opacity: 0.4; }
}
.scroll-label {
font-size: 10px;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--gray);
}
.univ-banner {
background: var(--dark-2);
border-top: 1px solid rgba(228,27,45,0.15);
padding: 14px 48px;
text-align: center;
font-size: 12px;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--gray);
}
.univ-banner strong { color: var(--white); }
.mobile-menu {
display: none;
position: fixed;
inset: 0;
background: rgba(10,10,10,0.98);
z-index: 999;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
font-family: 'Bebas Neue', sans-serif;
font-size: 48px;
letter-spacing: 0.06em;
color: var(--white);
text-decoration: none;
transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-close {
position: absolute;
top: 24px;
right: 24px;
background: none;
border: none;
color: var(--white);
font-size: 32px;
cursor: pointer;
padding: 8px;
}
</style>
</head>
<body class="page-enter">
<!-- Mobile Menu -->
<div class="mobile-menu" id="mobileMenu">
<button class="mobile-close" id="mobileClose">β</button>
<a href="index.html">Home</a>
<a href="racing.html">Autonomous Racing</a>
<a href="search-rescue.html">Search & Rescue</a>
<a href="healthcare.html">Healthcare</a>
<a href="sponsors.html">Sponsors</a>
</div>
<!-- NAV -->
<nav class="nav" id="mainNav">
<a href="index.html" class="nav-logo">
<img src="assets/logo-background-removed.png" alt="RoboNotts" />
</a>
<ul class="nav-links">
<li><a href="index.html" class="active">Home</a></li>
<li class="nav-dropdown">
<a href="#">Teams</a>
<ul class="nav-dropdown-menu">
<li><a href="racing.html">ποΈ Autonomous Racing</a></li>
<li><a href="search-rescue.html">π Search & Rescue</a></li>
<li><a href="healthcare.html">π₯ Healthcare</a></li>
</ul>
</li>
<li><a href="sponsors.html">Sponsors</a></li>
<li><a href="mailto:info@robonotts.com" class="btn btn-primary" style="margin-left:8px;padding:10px 22px;font-size:12px;">Contact Us</a></li>
</ul>
<div class="hamburger" id="hamburger">
<span></span><span></span><span></span>
</div>
</nav>
<!-- HERO -->
<section class="hero">
<div class="hero-grid-lines"></div>
<div class="geo-bg"></div>
<img src="assets/logo-white-outline.png" alt="RoboNotts Logo" class="hero-logo" />
<p class="hero-eyebrow">University of Nottingham</p>
<h1>Robo<span>Notts</span></h1>
<p class="hero-sub">A student-led robotics team pioneering autonomous systems, search & rescue technology, and assistive healthcare robotics.</p>
<div class="hero-ctas">
<a href="#teams" class="btn btn-primary">Explore Our Teams</a>
<a href="sponsors.html" class="btn btn-outline">Become a Sponsor</a>
</div>
<div class="hero-scroll-hint">
<div class="scroll-dot"></div>
<span class="scroll-label">Scroll</span>
</div>
<div class="hero-diagonal"></div>
</section>
<!-- UNIV BANNER -->
<div class="univ-banner">
Student team at <strong>The University of Nottingham</strong> β Building the future of robotics
</div>
<!-- ABOUT -->
<section class="about-section">
<div class="container">
<div class="about-grid">
<div>
<p class="section-label">About RoboNotts</p>
<h2 class="section-title">Where Students<br>Build Tomorrow</h2>
<p class="section-body">
RoboNotts is the University of Nottingham's premier robotics team, bringing together students from Computer Science, Engineering, and beyond to tackle real-world challenges through intelligent autonomous systems.
</p>
<p class="section-body" style="margin-top:16px;">
From racing circuits to hospital wards and disaster zones, our three specialised teams push the boundaries of what student-built robots can do β competing at international competitions and advancing the state of the art.
</p>
<div class="about-stats">
<div class="stat-box" data-reveal data-reveal-delay="1">
<div class="stat-number">3</div>
<div class="stat-label">Active Teams</div>
</div>
<div class="stat-box" data-reveal data-reveal-delay="2">
<div class="stat-number">5+</div>
<div class="stat-label">Competitions</div>
</div>
<div class="stat-box" data-reveal data-reveal-delay="3">
<div class="stat-number">ROS2</div>
<div class="stat-label">Core Platform</div>
</div>
<div class="stat-box" data-reveal data-reveal-delay="4">
<div class="stat-number">AI</div>
<div class="stat-label">Powered Systems</div>
</div>
</div>
</div>
<div class="about-visual" data-reveal>
<div class="about-img-frame" style="height:380px;">
<div class="about-img-placeholder">π· Team Photo</div>
</div>
</div>
</div>
</div>
</section>
<div class="red-divider"></div>
<!-- TEAMS -->
<section class="teams-section" id="teams">
<div class="container">
<p class="section-label">Our Teams</p>
<h2 class="section-title">Three Frontiers<br>of Robotics</h2>
<div class="teams-grid">
<!-- Racing -->
<a href="racing.html" class="team-card team-card-racing" data-reveal data-reveal-delay="1">
<div class="team-card-banner">
<div class="team-card-banner-bg"></div>
<div class="team-icon">ποΈ</div>
<div class="team-card-number">01</div>
</div>
<div class="team-card-body">
<span class="team-tag">Speed & Autonomy</span>
<h3 class="team-card-title">Autonomous Racing</h3>
<p class="team-card-desc">Developing self-driving race vehicles that compete at the edge of perception, planning, and control at speed.</p>
<span class="team-card-arrow">Explore Team β</span>
</div>
</a>
<!-- Search & Rescue -->
<a href="search-rescue.html" class="team-card team-card-rescue" data-reveal data-reveal-delay="2">
<div class="team-card-banner">
<div class="team-card-banner-bg"></div>
<div class="team-icon">π</div>
<div class="team-card-number">02</div>
</div>
<div class="team-card-body">
<span class="team-tag">Field Robotics</span>
<h3 class="team-card-title">Search & Rescue</h3>
<p class="team-card-desc">Building robots capable of navigating complex, unstructured environments to locate and assist survivors.</p>
<span class="team-card-arrow">Explore Team β</span>
</div>
</a>
<!-- Healthcare -->
<a href="healthcare.html" class="team-card team-card-healthcare" data-reveal data-reveal-delay="3">
<div class="team-card-banner">
<div class="team-card-banner-bg"></div>
<div class="team-icon">π₯</div>
<div class="team-card-number">03</div>
</div>
<div class="team-card-body">
<span class="team-tag">Assistive Tech</span>
<h3 class="team-card-title">Healthcare</h3>
<p class="team-card-desc">Creating dependable assistive robots for clinical environments, supporting patients and healthcare professionals.</p>
<span class="team-card-arrow">Explore Team β</span>
</div>
</a>
</div>
</div>
</section>
<!-- COMPETITIONS -->
<section class="competitions-section">
<div class="container">
<p class="section-label">Competition History</p>
<h2 class="section-title">On the<br>World Stage</h2>
<div class="comp-list">
<div class="comp-item" data-reveal>
<div class="comp-year">2023</div>
<div>
<div class="comp-name">ICRA 2023 β METRICS HEART-MET</div>
<div class="comp-detail">Physically Assistive Robot Challenge Β· May 29 β June 1, 2023</div>
</div>
<span class="comp-badge">Competed</span>
</div>
<div class="comp-item" data-reveal>
<div class="comp-year">2022</div>
<div>
<div class="comp-name">HEART-MET Healthcare Robotics Challenge</div>
<div class="comp-detail">Healthcare Robotics Technologies Competition Β· Oct 2β5, 2022</div>
</div>
<span class="comp-badge">Competed</span>
</div>
</div>
</div>
</section>
<!-- SOCIAL / GALLERY -->
<section class="social-section">
<div class="container">
<div class="social-section-header">
<div>
<p class="section-label">Latest From Us</p>
<h2 class="section-title">In the<br>Field</h2>
</div>
<div class="social-links-row">
<a href="https://www.instagram.com/robonotts_/" target="_blank" class="social-pill">
<svg width="14" height="14" viewBox="0 0 24 24" fill="currentColor"><path d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z"/></svg>
Instagram
</a>
<a href="https://www.tiktok.com/@happy_therobot" target="_blank" class="social-pill">
<svg width="14" height="14" viewBox="0 0 24 24" fill="currentColor"><path d="M12.525.02c1.31-.02 2.61-.01 3.91-.02.08 1.53.63 3.09 1.75 4.17 1.12 1.11 2.7 1.62 4.24 1.79v4.03c-1.44-.05-2.89-.35-4.2-.97-.57-.26-1.1-.59-1.62-.93-.01 2.92.01 5.84-.02 8.75-.08 1.4-.54 2.79-1.35 3.94-1.31 1.92-3.58 3.17-5.91 3.21-1.43.08-2.86-.31-4.08-1.03-2.02-1.19-3.44-3.37-3.65-5.71-.02-.5-.03-1-.01-1.49.18-1.9 1.12-3.72 2.58-4.96 1.66-1.44 3.98-2.13 6.15-1.72.02 1.48-.04 2.96-.04 4.44-.99-.32-2.15-.23-3.02.37-.63.41-1.11 1.04-1.36 1.75-.21.51-.15 1.07-.14 1.61.24 1.64 1.82 3.02 3.5 2.87 1.12-.01 2.19-.66 2.77-1.61.19-.33.4-.67.41-1.06.1-1.79.06-3.57.07-5.36.01-4.03-.01-8.05.02-12.07z"/></svg>
TikTok
</a>
</div>
</div>
<div class="gallery-grid">
<div class="gallery-item wide" data-reveal>
<div class="gallery-placeholder">
<div class="gallery-placeholder-icon">π·</div>
<div class="gallery-placeholder-text">Featured Post</div>
</div>
<div class="gallery-overlay"><span class="gallery-caption">Add your featured image here</span></div>
</div>
<div class="gallery-item" data-reveal data-reveal-delay="1">
<div class="gallery-placeholder">
<div class="gallery-placeholder-icon">π€</div>
<div class="gallery-placeholder-text">Post 2</div>
</div>
<div class="gallery-overlay"><span class="gallery-caption">Social post</span></div>
</div>
<div class="gallery-item" data-reveal data-reveal-delay="2">
<div class="gallery-placeholder">
<div class="gallery-placeholder-icon">π</div>
<div class="gallery-placeholder-text">Post 3</div>
</div>
<div class="gallery-overlay"><span class="gallery-caption">Social post</span></div>
</div>
<div class="gallery-item" data-reveal data-reveal-delay="1">
<div class="gallery-placeholder">
<div class="gallery-placeholder-icon">π§</div>
<div class="gallery-placeholder-text">Post 4</div>
</div>
<div class="gallery-overlay"><span class="gallery-caption">Social post</span></div>
</div>
<div class="gallery-item" data-reveal data-reveal-delay="2">
<div class="gallery-placeholder">
<div class="gallery-placeholder-icon">π‘</div>
<div class="gallery-placeholder-text">Post 5</div>
</div>
<div class="gallery-overlay"><span class="gallery-caption">Social post</span></div>
</div>
<div class="gallery-item" data-reveal data-reveal-delay="3">
<div class="gallery-placeholder">
<div class="gallery-placeholder-icon">π―</div>
<div class="gallery-placeholder-text">Post 6</div>
</div>
<div class="gallery-overlay"><span class="gallery-caption">Social post</span></div>
</div>
</div>
<p style="text-align:center; margin-top: 20px; font-size:12px; color:var(--gray);">
Replace placeholder cells with your actual images β simply swap the content inside each <code>.gallery-item</code> with an <code><img></code> tag.
</p>
</div>
</section>
<!-- FOOTER -->
<footer>
<div class="footer-grid">
<div class="footer-brand">
<img src="assets/logo-background-removed.png" alt="RoboNotts" />
<p class="footer-tagline">Student-led robotics research and competition team at the University of Nottingham.</p>
<div class="footer-social">
<a href="https://www.instagram.com/happy_therobot/" target="_blank" title="Instagram">
<svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z"/></svg>
</a>
<a href="https://www.tiktok.com/@happy_therobot" target="_blank" title="TikTok">
<svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="M12.525.02c1.31-.02 2.61-.01 3.91-.02.08 1.53.63 3.09 1.75 4.17 1.12 1.11 2.7 1.62 4.24 1.79v4.03c-1.44-.05-2.89-.35-4.2-.97-.57-.26-1.1-.59-1.62-.93-.01 2.92.01 5.84-.02 8.75-.08 1.4-.54 2.79-1.35 3.94-1.31 1.92-3.58 3.17-5.91 3.21-1.43.08-2.86-.31-4.08-1.03-2.02-1.19-3.44-3.37-3.65-5.71-.02-.5-.03-1-.01-1.49.18-1.9 1.12-3.72 2.58-4.96 1.66-1.44 3.98-2.13 6.15-1.72.02 1.48-.04 2.96-.04 4.44-.99-.32-2.15-.23-3.02.37-.63.41-1.11 1.04-1.36 1.75-.21.51-.15 1.07-.14 1.61.24 1.64 1.82 3.02 3.5 2.87 1.12-.01 2.19-.66 2.77-1.61.19-.33.4-.67.41-1.06.1-1.79.06-3.57.07-5.36.01-4.03-.01-8.05.02-12.07z"/></svg>
</a>
</div>
</div>
<div>
<p class="footer-col-title">Teams</p>
<ul class="footer-links">
<li><a href="racing.html">Autonomous Racing</a></li>
<li><a href="search-rescue.html">Search & Rescue</a></li>
<li><a href="healthcare.html">Healthcare</a></li>
</ul>
</div>
<div>
<p class="footer-col-title">Organisation</p>
<ul class="footer-links">
<li><a href="sponsors.html">Sponsors</a></li>
<li><a href="https://www.chartresearch.org/robonotts" target="_blank">Old Website</a></li>
</ul>
</div>
<div>
<p class="footer-col-title">Follow Us</p>
<ul class="footer-links">
<li><a href="https://www.instagram.com/happy_therobot/" target="_blank">Instagram</a></li>
<li><a href="https://www.tiktok.com/@happy_therobot" target="_blank">TikTok</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<span>Β© 2025 RoboNotts β University of Nottingham</span>
<span>Built with β€οΈ by the team</span>
</div>
</footer>
<script>
// Nav scroll
const nav = document.getElementById('mainNav');
window.addEventListener('scroll', () => {
nav.classList.toggle('scrolled', window.scrollY > 40);
});
// Hamburger
document.getElementById('hamburger').addEventListener('click', () => {
document.getElementById('mobileMenu').classList.add('open');
});
document.getElementById('mobileClose').addEventListener('click', () => {
document.getElementById('mobileMenu').classList.remove('open');
});
// Scroll reveal
const reveals = document.querySelectorAll('[data-reveal]');
const observer = new IntersectionObserver((entries) => {
entries.forEach(e => {
if (e.isIntersecting) { e.target.classList.add('revealed'); observer.unobserve(e.target); }
});
}, { threshold: 0.12 });
reveals.forEach(el => observer.observe(el));
</script>
</body>
</html>