-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathabout_us.html
More file actions
278 lines (241 loc) · 10.6 KB
/
about_us.html
File metadata and controls
278 lines (241 loc) · 10.6 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
<!DOCTYPE html> <!-- Declares we're using HTML 5 [we're not strictly because we're using the "center," which is HTML 4]-->
<html lang='en'>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>236 Technoticks</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
body {
font-family: 'Roboto', sans-serif;
background-color: #f0f4f8;
}
.gradient-bg {
background: linear-gradient(135deg, #8ca7fa 0%, #5a7df5 100%);
}
.nav-btn {
transition: all 0.3s ease;
}
.nav-btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.footer-icon {
transition: all 0.3s ease;
}
.footer-icon:hover {
transform: scale(1.1);
}
.robot-slideshow {
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
border-radius: 0.5rem;
padding: 40px;
margin-left: 100px;
margin-right: 100px;
}
.header-banner {
max-height: 180px;
object-fit: contain;
border-radius: 24px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
cursor: pointer;
}
.header-banner:hover {
transform: scale(1.02);
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.disney-border {
position: relative;
overflow: hidden;
}
.disney-border::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border: 4px solid rgba(255, 255, 255, 0.3);
border-radius: 24px;
pointer-events: none;
}
/* DeepSite disclaimer styles */
.deepsite-badge {
background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
border-radius: 9999px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
padding: 8px 16px;
display: inline-flex;
align-items: center;
gap: 8px;
text-decoration: none;
}
.deepsite-badge:hover {
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.deepsite-logo {
width: 20px;
height: 20px;
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
</style>
</head>
<body>
<!-- Header Section with Banner -->
<header class="gradient-bg text-white py-6">
<div class="container mx-auto px-4">
<div class="flex flex-col items-center">
<a href="https://team236.github.io/" target="_blank">
<img src="brighter banner.jpg" alt="236 Technoticks Banner"
class="header-banner disney-border hover:border-white">
</a>
<p class="text-sm md:text-base bg-white text-blue-700 px-3 py-1 rounded-full font-medium mt-3">
Website under active development
</p>
</div>
</div>
</header>
<!-- Navigation -->
<nav class="container mx-auto px-4 mt-8">
<div class="flex flex-wrap justify-center gap-3 md:gap-4">
<a href="https://team236.github.io/"
class="nav-btn bg-blue-800 hover:bg-blue-700 text-white font-medium py-3 px-6 rounded-lg">
<i class="fas fa-home mr-2"></i>Home
</a>
<a href="https://team236.github.io/about_us.html"
class="nav-btn bg-blue-800 hover:bg-blue-700 text-white font-medium py-3 px-6 rounded-lg">
<i class="fas fa-users mr-2"></i>About Us
</a>
<a href="https://team236.github.io/New_members.html"
class="nav-btn bg-blue-800 hover:bg-blue-700 text-white font-medium py-3 px-6 rounded-lg">
<i class="fas fa-user-plus mr-2"></i>New Members
</a>
<a href="https://team236.github.io/Contact_Us.html"
class="nav-btn bg-blue-800 hover:bg-blue-700 text-white font-medium py-3 px-6 rounded-lg">
<i class="fas fa-envelope mr-2"></i>Contact Us
</a>
<a href="https://team236.github.io/Robot_archive.html"
class="nav-btn bg-blue-800 hover:bg-blue-700 text-white font-medium py-3 px-6 rounded-lg">
<i class="fas fa-robot mr-2"></i>Robot Archive
</a>
<a href="https://team236.github.io/Links.html"
class="nav-btn bg-blue-800 hover:bg-blue-700 text-white font-medium py-3 px-6 rounded-lg">
<i class="fas fa-link mr-2"></i>Links
</a>
<a href="https://team236.github.io/bash.html"
class="nav-btn bg-blue-800 hover:bg-blue-700 text-white font-medium py-3 px-6 rounded-lg">
<i class="fas fa-beach mr-2"></i>𓆉 Bash@theBeach
</a>
</div>
</nav>
<!-- Main Content -->
<center>
<br>
<h1 style="font-size:36px; ">About Us</h1>
</center>
<main class="container mx-auto px-4 my-10">
<div class="robot-slideshow overflow-hidden">
</section>
<center>
<p>FIRST Team 236 was founded in 1999 by a group of like-minded, forward-thinking students, teachers and mentors with an interest in cutting edge technology. FIRST offered a fun way to learn about robotics, design and computer programming.
Our team encompasses students in grades 9-12, teachers and adult mentors. All are welcome. Through the years, the team has grown to involve more than 10 percent (At times) of the LOLHS's student body & students from East Lyme high school, and it is well known throughout the community for its enthusiasm for everything from robots to community service.
We strongly believe that our mentors' mission is to support and encourage our students and to pass on their skills and experience. Students get as much hands-on experience as possible and work closely with mentors.</p>
</center>
<section>
<h2>Our Mission</h2>
<ul>
<li>• To inspire and educate students in the fields of STEM.</li>
<li>• To foster a culture of Gracious-Professionalism.</li>
<li>• To compete at the highest level of FIRST Robotics Competition.</li>
<li>• To give back to our community through outreach and mentorship.</li>
</ul>
<p>Team 236 is proud to be a Hall of Fame team since 2009.</p>
<center>
<iframe width="560" height="315" src="https://www.youtube.com/embed/NmzCLohIZLg?si=zLCAVCOIDyQxwBZ5" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</center>
</div>
</main>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-8">
<div class="container mx-auto px-4">
<div class="flex flex-col items-center">
<!-- Social Media Icons -->
<div class="flex space-x-4 mb-6">
<a href="https://www.facebook.com/FIRSTTeam236/" class="footer-icon bg-blue-600 hover:bg-blue-700 text-white w-12 h-12 rounded-full flex items-center justify-center">
<i class="fab fa-facebook-f text-xl"></i>
</a>
<a href="https://x.com/technoticks236" class="footer-icon bg-blue-400 hover:bg-blue-500 text-white w-12 h-12 rounded-full flex items-center justify-center">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="https://www.youtube.com/@thetechnoticks" class="footer-icon bg-red-600 hover:bg-red-700 text-white w-12 h-12 rounded-full flex items-center justify-center">
<i class="fab fa-youtube text-xl"></i>
</a>
<a href="https://www.instagram.com/236technoticks/" class="footer-icon bg-pink-600 hover:bg-pink-700 text-white w-12 h-12 rounded-full flex items-center justify-center">
<i class="fab fa-instagram text-xl"></i>
</a>
<a href="https://www.pinterest.com/team236/6" class="footer-icon bg-red-500 hover:bg-red-600 text-white w-12 h-12 rounded-full flex items-center justify-center">
<i class="fab fa-pinterest text-xl"></i>
</a>
</div>
<p class="text-sm mb-2">Copyright © 2024-2025 Team 236 - TechnoTicks</p>
<a href="https://github.com/Team236/team236.github.io" target="_blank" class="text-blue-300 hover:text-blue-100 text-sm mb-4">
<i class="fab fa-github mr-1"></i> GitHub Repository
</a>
<!-- DeepSite Badge in Footer -->
<a href="#" class="deepsite-badge pulse">
<img src="https://huggingface.co/spaces/enzostvs/deepsite/resolve/main/public/logo.svg" alt="DeepSite Logo" class="deepsite-logo">
<span>Made partially with DeepSite</span>
</a>
</div>
</div>
</footer>
<script>
// Optional: Add animation when banner is clicked
document.querySelector('.header-banner').addEventListener('click', function() {
this.style.transform = 'scale(0.98)';
setTimeout(() => {
this.style.transform = 'scale(1.02)';
}, 100);
});
// Add ripple effect to DeepSite badge
document.querySelector('.deepsite-badge').addEventListener('click', function(e) {
e.preventDefault();
const ripple = document.createElement('span');
ripple.className = 'absolute bg-white opacity-30 rounded-full';
ripple.style.width = '10px';
ripple.style.height = '10px';
ripple.style.left = (e.clientX - e.target.getBoundingClientRect().left - 5) + 'px';
ripple.style.top = (e.clientY - e.target.getBoundingClientRect().top - 5) + 'px';
ripple.style.transform = 'scale(0)';
ripple.style.transition = 'transform 0.6s ease, opacity 0.6s ease';
this.appendChild(ripple);
setTimeout(() => {
ripple.style.transform = 'scale(40)';
ripple.style.opacity = '0';
}, 10);
setTimeout(() => {
ripple.remove();
}, 600);
});
</script>
</body>
</html>