forked from shalonjovan/VidyaGyan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstudy_groups.html
More file actions
605 lines (555 loc) · 27.7 KB
/
Copy pathstudy_groups.html
File metadata and controls
605 lines (555 loc) · 27.7 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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VidyaGyan - Study Groups</title>
<!-- Tailwind CSS CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<script src="translate.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap" rel="stylesheet">
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #c8d8f0;
min-height: 100vh;
display: flex;
flex-direction: column;
}
/* Custom CSS for the Chatbot Button */
#chatbot-button {
position: fixed;
bottom: 50px;
right: 50px;
width: 90px;
height: 90px;
border-radius: 50%;
overflow: hidden;
box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
background-color: #fff;
cursor: pointer;
transition: all 0.3s ease;
border: 3px solid #6366f1;
}
#chatbot-button:hover {
transform: scale(1.1);
box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}
#chatbot-button img {
width: 90%;
height: 90%;
object-fit: contain;
border-radius: 50%;
}
/* Custom styles for the page content */
.group-card {
background-color: #ffffff;
border-radius: 20px;
padding: 24px;
border: 2px solid #3b82f6;
box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15), 0 4px 8px rgba(59, 130, 246, 0.1);
transition: all 0.3s ease-in-out;
cursor: pointer;
position: relative;
overflow: hidden;
height: 320px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.group-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 35px rgba(59, 130, 246, 0.25), 0 15px 25px rgba(59, 130, 246, 0.15);
border-color: #2563eb;
}
.group-icon {
width: 80px;
height: 80px;
border-radius: 16px;
border: 3px solid #3b82f6;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
transition: all 0.3s ease;
flex-shrink: 0;
}
.group-card:hover .group-icon {
transform: scale(1.05);
border-color: #2563eb;
box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.header-bg {
background: #1e293b;
}
.info-tag {
background-color: #dbeafe;
color: #1e40af;
border: 1px solid #bfdbfe;
}
.page-title {
color: #1e293b;
}
.text-dark-blue {
color: #1e293b;
}
.icon-color {
color: #3b82f6;
}
.line-clamp-2 {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.chat-icon {
font-size: 28px;
color: #3b82f6;
}
.online-indicator {
background-color: #10b981;
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
.grid-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px;
justify-content: center;
align-items: start;
}
@media (max-width: 768px) {
.grid-container {
grid-template-columns: 1fr;
}
}
@media (min-width: 769px) and (max-width: 1024px) {
.grid-container {
grid-template-columns: repeat(2, 1fr);
}
}
.card-content {
display: flex;
flex-direction: column;
height: 100%;
}
.card-header {
flex-shrink: 0;
margin-bottom: 16px;
}
.card-body {
flex-grow: 1;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.card-footer {
flex-shrink: 0;
margin-top: 16px;
padding-top: 16px;
border-top: 1px solid #e5e7eb;
}
.sidebar {
width: 250px;
transform: translateX(-100%);
transition: transform 0.3s ease-in-out;
}
.sidebar.open {
transform: translateX(0);
}
</style>
</head>
<body class="bg-[#c8d8f0] flex flex-col min-h-screen">
<!-- Header Navigation Bar -->
<header class="relative z-20 w-full p-2 flex justify-between items-center text-white bg-gray-900">
<script type="text/javascript" src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
<div class="flex items-center space-x-2">
<!-- Mobile Menu Button -->
<button id="menu-btn" class="text-white focus:outline-none md:hidden">
<svg class="w-8 h-8" fill="none" stroke="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 6h16M4 12h16m-7 6h7"></path>
</svg>
</button>
<!-- Logo and Site Name -->
<div class="flex items-center space-x-2">
<a href="index.html">
<img src="./assets/mainlogo.png" alt="VidyaGyan Logo" class="w-10 h-10">
</a>
<span class="text-3xl font-bold text-white">VidyaGyan</span>
</div>
</div>
<!-- Desktop Navigation Links -->
<nav class="hidden md:flex items-center space-x-4 text-base">
<a href="career_paths.html"
class="text-white px-3 py-2 rounded-lg hover:bg-gray-800 transition-colors duration-200">Career Paths</a>
<a href="roadmaps/roadmap.html"
class="text-white px-3 py-2 rounded-lg hover:bg-gray-800 transition-colors duration-200">Roadmaps</a>
<a href="colleges.html"
class="text-white px-3 py-2 rounded-lg hover:bg-gray-800 transition-colors duration-200">Colleges</a>
<a href="exams.html"
class="text-white px-3 py-2 rounded-lg hover:bg-gray-800 transition-colors duration-200">Exams</a>
<a href="resources.html"
class="text-white px-3 py-2 rounded-lg hover:bg-gray-800 transition-colors duration-200">Resources</a>
<a href="study_groups.html"
class="text-white px-3 py-2 rounded-lg hover:bg-gray-800 transition-colors duration-200">Study Groups</a>
<a href="scholarship.html"
class="text-white px-3 py-2 rounded-lg hover:bg-gray-800 transition-colors duration-200">Scholarships</a>
</nav>
<!-- Action Buttons (Home, Profile, and For You) -->
<div class="hidden md:flex items-center space-x-4">
<a href="home.html"
class="flex items-center space-x-2 text-white hover:text-gray-200 px-3 py-2 rounded-lg hover:bg-gray-800 transition-colors duration-200">
<!-- Home Icon -->
<img src="assets/home.png" alt="Home" class="w-8 h-8">
</a>
<a href="profile.html"
class="flex items-center space-x-2 text-white hover:text-gray-200 px-3 py-2 rounded-lg hover:bg-gray-800 transition-colors duration-200">
<!-- Profile Icon -->
<img src="assets/profile.jpg" alt="Profile" class="w-8 h-8">
</a>
<a href="foryou.html"
class="text-sm px-6 py-3 rounded-full border-2 border-blue-500 text-blue-500 hover:text-white hover:bg-blue-500 transition-colors duration-300">For You</a>
</div>
</header>
<!-- Main Content -->
<main class="w-full flex-grow p-8">
<div class="w-full max-w-7xl mx-auto mb-6">
<div class="flex justify-center items-center mb-8">
<div class="text-center">
<h1 class="page-title text-4xl font-bold drop-shadow-lg">Study Groups</h1>
<p class="text-gray-600 mt-2">Join active study groups and collaborate with peers</p>
</div>
</div>
<div class="grid-container" id="groups-grid">
<!-- Study group cards will be dynamically inserted here -->
</div>
</div>
</main>
<!-- Sidebar Menu (Mobile) -->
<nav id="sidebar" class="sidebar fixed top-0 left-0 h-full bg-white bg-opacity-80 backdrop-filter backdrop-blur-lg z-30 shadow-lg md:hidden">
<div class="p-6">
<h2 class="text-xl font-bold mb-4">Menu</h2>
<ul class="space-y-4">
<li><a href="index.html" class="block p-2 rounded-lg text-gray-800 hover:bg-blue-100 transition-colors duration-200">Home</a></li>
<li><a href="colleges.html" class="block p-2 rounded-lg text-gray-800 hover:bg-blue-100 transition-colors duration-200">College Directory</a></li>
<li><a href="career_paths.html" class="block p-2 rounded-lg text-gray-800 hover:bg-blue-100 transition-colors duration-200">Career Paths</a></li>
<li><a href="roadmaps/roadmap.html" class="block p-2 rounded-lg text-gray-800 hover:bg-blue-100 transition-colors duration-200">Roadmaps</a></li>
<li><a href="study_groups.html" class="block p-2 rounded-lg text-gray-800 hover:bg-blue-100 transition-colors duration-200">Study Groups</a></li>
<li><a href="resources.html" class="block p-2 rounded-lg text-gray-800 hover:bg-blue-100 transition-colors duration-200">Study Materials</a></li>
</ul>
</div>
</nav>
<script>
const groupsGrid = document.getElementById('groups-grid');
const menuBtn = document.getElementById('menu-btn');
const sidebar = document.getElementById('sidebar');
menuBtn.addEventListener('click', () => {
sidebar.classList.toggle('open');
});
let groupsData = [];
function getIconForGroup(tags) {
// Return appropriate chat/study icon based on tags
if (tags.includes('engineering') || tags.includes('technical')) {
return '⚙️';
} else if (tags.includes('medical') || tags.includes('healthcare')) {
return '🏥';
} else if (tags.includes('programming') || tags.includes('coding')) {
return '💻';
} else if (tags.includes('general') || tags.includes('study')) {
return '📚';
} else if (tags.includes('mathematics') || tags.includes('math')) {
return '🔢';
} else if (tags.includes('science') || tags.includes('physics')) {
return '🔬';
} else if (tags.includes('arts') || tags.includes('creative')) {
return '🎨';
} else {
return '💬';
}
}
function generateChatUrl(groupId, chatConfig) {
// Generate URL with query parameters for the chat room
const params = new URLSearchParams({
id: groupId,
chatId: chatConfig.chatId,
scriptSrc: chatConfig.scriptSrc
});
return `chat_room.html?${params.toString()}`;
}
function renderGroups(groups) {
groupsGrid.innerHTML = '';
groups.forEach((group, index) => {
const icon = getIconForGroup(group.tags);
const chatUrl = generateChatUrl(group.id, group.chatConfig);
const card = `
<div class="group-card" data-group-id="${group.id}" onclick="window.location.href='${chatUrl}'">
<div class="card-content">
<div class="card-header">
<div class="flex items-start space-x-4">
<div class="group-icon">
<span class="chat-icon">${icon}</span>
</div>
<div class="flex-grow min-w-0">
<div class="flex items-center space-x-2 mb-2">
<h3 class="text-lg font-bold text-dark-blue line-clamp-1">${group.name}</h3>
<div class="online-indicator w-2 h-2 rounded-full flex-shrink-0"></div>
</div>
<p class="text-sm text-gray-600 line-clamp-2 mb-3">${group.description}</p>
</div>
</div>
</div>
<div class="card-body">
<div class="flex flex-wrap gap-1 mb-4">
${group.tags.slice(0, 3).map(tag => `<span class="info-tag text-xs px-2 py-1 rounded-full font-medium">${tag}</span>`).join('')}
${group.tags.length > 3 ? `<span class="info-tag text-xs px-2 py-1 rounded-full font-medium">+${group.tags.length - 3}</span>` : ''}
</div>
<div class="bg-blue-50 rounded-lg p-3 mb-4">
<div class="flex items-center justify-between text-sm">
<div class="flex items-center space-x-2">
<svg class="w-4 h-4 icon-color" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<path d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"/>
</svg>
<span class="text-gray-700">Active Now</span>
</div>
<div class="flex items-center space-x-2">
<svg class="w-4 h-4 icon-color" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<path d="M13 6a3 3 0 11-6 0 3 3 0 016 0zM18 8a2 2 0 11-4 0 2 2 0 014 0zM14 15a4 4 0 00-8 0v3h8v-3z"/>
</svg>
<span class="text-gray-700">${Math.floor(Math.random() * 50) + 10} Online</span>
</div>
</div>
</div>
</div>
<div class="card-footer">
<div class="flex items-center justify-between">
<div class="flex items-center space-x-2">
<svg class="w-5 h-5 icon-color" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M18 10c0 3.866-3.582 7-8 7a8.841 8.841 0 01-4.083-.98L2 17l1.338-3.123C2.493 12.767 2 11.434 2 10c0-3.866 3.582-7 8-7s8 3.134 8 7zM7 9H5v2h2V9zm8 0h-2v2h2V9zM9 9h2v2H9V9z" clip-rule="evenodd"/>
</svg>
<span class="text-sm text-gray-600">Join Chat</span>
</div>
<div class="text-right">
<div class="text-sm font-semibold text-blue-600">Enter Room →</div>
</div>
</div>
</div>
</div>
</div>
`;
groupsGrid.innerHTML += card;
});
}
async function fetchStudyGroups() {
try {
const response = await fetch('chat_rooms.json');
const data = await response.json();
groupsData = data.chatRooms || [];
renderGroups(groupsData);
} catch (error) {
console.error('Failed to fetch study groups:', error);
// Expanded fallback data for better demonstration
groupsData = [
{
id: "study-group-general",
name: "General Study Group",
description: "Connect and chat with other students about various academic topics and share study resources",
tags: ["general", "study", "discussion"],
members: 45,
lastActive: "2 minutes ago",
chatConfig: {
chatId: "rt-2cef99416fe59f5b29457e27dc9f9828",
scriptSrc: "https://rumbletalk.com/client/?!7tl7dVq"
}
},
{
id: "engineering-hub",
name: "Engineering Hub",
description: "Connect with engineering students and discuss technical topics, projects, and problem-solving",
tags: ["engineering", "technical", "projects"],
members: 32,
lastActive: "5 minutes ago",
chatConfig: {
chatId: "rt-engineering-example",
scriptSrc: "https://rumbletalk.com/client/?!engineeringHash"
}
},
{
id: "medical-study-circle",
name: "Medical Study Circle",
description: "Medical students discussion forum for anatomy, physiology, and clinical practice",
tags: ["medical", "healthcare", "clinical"],
members: 28,
lastActive: "1 minute ago",
chatConfig: {
chatId: "rt-medical-example",
scriptSrc: "https://rumbletalk.com/client/?!medicalHash"
}
},
{
id: "programming-community",
name: "Programming Community",
description: "Learn coding together! Discuss algorithms, share code, and solve programming challenges",
tags: ["programming", "coding", "algorithms"],
members: 67,
lastActive: "3 minutes ago",
chatConfig: {
chatId: "rt-programming-example",
scriptSrc: "https://rumbletalk.com/client/?!programmingHash"
}
},
{
id: "mathematics-masters",
name: "Mathematics Masters",
description: "Advanced mathematics discussion group for calculus, algebra, and statistical analysis",
tags: ["mathematics", "calculus", "statistics"],
members: 23,
lastActive: "8 minutes ago",
chatConfig: {
chatId: "rt-math-example",
scriptSrc: "https://rumbletalk.com/client/?!mathHash"
}
},
{
id: "science-explorers",
name: "Science Explorers",
description: "Explore the wonders of physics, chemistry, and biology with fellow science enthusiasts",
tags: ["science", "physics", "chemistry"],
members: 41,
lastActive: "12 minutes ago",
chatConfig: {
chatId: "rt-science-example",
scriptSrc: "https://rumbletalk.com/client/?!scienceHash"
}
},
{
id: "business-studies",
name: "Business & Economics",
description: "Discuss business strategies, economics principles, and entrepreneurship ideas",
tags: ["business", "economics", "finance"],
members: 19,
lastActive: "15 minutes ago",
chatConfig: {
chatId: "rt-business-example",
scriptSrc: "https://rumbletalk.com/client/?!businessHash"
}
},
{
id: "language-learning",
name: "Language Exchange",
description: "Practice languages together and help each other improve communication skills",
tags: ["languages", "communication", "cultural"],
members: 36,
lastActive: "6 minutes ago",
chatConfig: {
chatId: "rt-language-example",
scriptSrc: "https://rumbletalk.com/client/?!languageHash"
}
},
{
id: "arts-creative",
name: "Creative Arts Studio",
description: "Share artistic works, get feedback, and collaborate on creative projects",
tags: ["arts", "creative", "design"],
members: 25,
lastActive: "4 minutes ago",
chatConfig: {
chatId: "rt-arts-example",
scriptSrc: "https://rumbletalk.com/client/?!artsHash"
}
}
];
renderGroups(groupsData);
}
}
// Initialize
fetchStudyGroups();
</script>
<!-- Chatbot Button -->
<a href="chat.html" id="chatbot-button" title="Chat with us!">
<img src="./assets/images/chat.jpeg" alt="Chatbot" />
</a>
<!-- Footer -->
<footer class="bg-gray-900 text-gray-300 p-6 pt-10 mt-16">
<div class="container mx-auto grid grid-cols-1 md:grid-cols-5 gap-8">
<!-- Logo Column (spans full height) -->
<div class="col-span-1 flex justify-center items-center">
<img src="./assets/mainlogo.png" alt="VidyaGyan Logo" class="w-75 h-60">
</div>
<!-- VidyaGyan Info Column -->
<div class="col-span-1 flex flex-col">
<h3 class="text-white font-bold text-xl mb-2">VidyaGyan</h3>
<p class="text-gray-400 text-sm mb-6">Your all-in-one platform for academic and career guidance.</p>
<div class="mb-4">
<h4 class="text-white font-semibold text-lg mb-2">Blastorz</h4>
<div class="flex space-x-2 items-center mb-2">
<svg class="w-4 h-4 text-gray-400" fill="currentColor" viewBox="0 0 24 24">
<path d="M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0l-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z"/>
</svg>
<a href="mailto:team.blastorz@gmail.com" class="text-gray-400 hover:text-white text-sm transition-colors duration-200">
team.blastorz@gmail.com
</a>
</div>
<div class="flex space-x-2 items-center">
<svg class="w-4 h-4 text-gray-400" fill="currentColor" viewBox="0 0 24 24">
<path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/>
</svg>
<a href="members.html" class="text-gray-400 hover:text-white text-sm transition-colors duration-200">
Team Blastorz Info
</a>
</div>
</div>
</div>
<!-- Navigation Column -->
<div class="col-span-1">
<h4 class="text-white font-semibold text-lg mb-4">Navigation</h4>
<ul class="space-y-3">
<li><a href="home.html" class="text-gray-300 hover:text-white transition-colors duration-200">Home</a></li>
<li><a href="profile.html" class="text-gray-300 hover:text-white transition-colors duration-200">Profile</a></li>
<li><a href="foryou.html" class="text-gray-300 hover:text-white transition-colors duration-200">For You</a></li>
</ul>
</div>
<!-- Resources Column -->
<div class="col-span-1">
<h4 class="text-white font-semibold text-lg mb-4">Resources</h4>
<ul class="space-y-3">
<li><a href="colleges.html" class="text-gray-300 hover:text-white transition-colors duration-200">Colleges</a></li>
<li><a href="career_paths.html" class="text-gray-300 hover:text-white transition-colors duration-200">Career Paths</a></li>
<li><a href="roadmaps/roadmap.html" class="text-gray-300 hover:text-white transition-colors duration-200">Roadmaps</a></li>
<li><a href="exams.html" class="text-gray-300 hover:text-white transition-colors duration-200">Entrance Exams</a></li>
<li><a href="resources.html" class="text-gray-300 hover:text-white transition-colors duration-200">Study Materials</a></li>
<li><a href="scholarship.html" class="text-gray-300 hover:text-white transition-colors duration-200">Scholarships</a></li>
</ul>
</div>
<!-- Community & Account Column -->
<div class="col-span-1">
<h4 class="text-white font-semibold text-lg mb-4">Community & Account</h4>
<ul class="space-y-3">
<li><a href="login.html" class="text-gray-300 hover:text-white transition-colors duration-200">Login</a></li>
<li><a href="signup.html" class="text-gray-300 hover:text-white transition-colors duration-200">Sign Up</a></li>
<li><a href="study_groups.html" class="text-gray-300 hover:text-white transition-colors duration-200">Study Groups</a></li>
</ul>
</div>
</div>
<!-- Copyright -->
<div class="border-t border-gray-700 mt-6 pt-3 text-center">
<p class="text-gray-400 text-sm">
Copyright © 2025 - Team Blastorz 💥
</p>
</div>
</footer>
</body>
</html>