-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbash.html
More file actions
277 lines (226 loc) · 9.95 KB
/
bash.html
File metadata and controls
277 lines (226 loc) · 9.95 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
<!DOCTYPE html>
<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;
}
.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="bashbanner.png" 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 -->
<main class="container mx-auto px-4 my-10">
<div class="robot-slideshow overflow-hidden">
<center>
<p style="font-size: 18px;">Join us for the 25th* annual Bash @ the Beach; A super chill off-season FIRST Robotics competition event aimed at training new team members and encouraging gracious professionalism. 24 teams expected. </p>
<br>
<h1 style="font-size: 36px;">Questions?</h1>
<p style="font-size: 18px;"><a href="mailto:nullemail@backsoon.net">nullemail@backsoon.net</a></p>
<h1 style="font-size: 36px;">Key info:</h1>
<p style="font-size: 18px;">Date TBD 2025</p> <a target="_blank" href="https://calendar.google.com/calendar/event?action=TEMPLATE&tmeid=Nmo5YjZnZ3A4MHJvb2pzYWVkZnJmcDJoc3QgZ29zc2ZAcmVnaW9uMTgub3Jn&tmsrc=gossf%40region18.org"><img border="0" src="https://calendar.google.com/calendar/images/ext/gc_button1_en.gif" alt="Google Calendar"></a>
<br>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2541.725117032167!2d-72.32541249648045!3d41.318369149100725!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89e6180f331b174d%3A0xd02eddba7a7c878c!2sLyme-Old%20Lyme%20High%20School!5e0!3m2!1sen!2sus!4v1750804745710!5m2!1sen!2sus" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></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>