-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
702 lines (624 loc) · 23.7 KB
/
index.html
File metadata and controls
702 lines (624 loc) · 23.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
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tlash Crew - Raw Real Tlash</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background: #0a0a0a;
color: #ffffff;
overflow-x: hidden;
}
/* Navigation */
.navbar {
position: fixed;
top: 0;
width: 100%;
background: rgba(10, 10, 10, 0.95);
backdrop-filter: blur(10px);
z-index: 1000;
padding: 1rem 2rem;
transition: all 0.3s ease;
}
.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
}
.logo {
height: 40px;
}
.logo img {
height: 100%;
width: auto;
filter: brightness(1.2);
}
.nav-links {
display: flex;
list-style: none;
gap: 2rem;
}
.nav-links a {
color: #ffffff;
text-decoration: none;
transition: color 0.3s ease;
cursor: pointer;
}
.nav-links a:hover {
color: #8b5cf6;
}
.mobile-menu {
display: none;
flex-direction: column;
cursor: pointer;
}
.mobile-menu span {
width: 25px;
height: 3px;
background: #ffffff;
margin: 3px 0;
transition: 0.3s;
}
/* Hero Section */
.hero {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
position: relative;
background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0a 70%);
}
.hero-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad" cx="50%" cy="50%"><stop offset="0%" stop-color="%23663399" stop-opacity="0.1"/><stop offset="100%" stop-color="%23000000" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad)"/><circle cx="800" cy="300" r="80" fill="url(%23grad)"/><circle cx="300" cy="700" r="120" fill="url(%23grad)"/><circle cx="700" cy="800" r="90" fill="url(%23grad)"/></svg>') no-repeat center center;
background-size: cover;
opacity: 0.3;
animation: float 20s infinite linear;
}
@keyframes float {
0% { transform: rotate(0deg) scale(1); }
50% { transform: rotate(180deg) scale(1.1); }
100% { transform: rotate(360deg) scale(1); }
}
.hero-content {
text-align: center;
z-index: 2;
}
.hero-logo {
width: 400px;
height: auto;
margin-bottom: 2rem;
filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3)) brightness(1.1);
animation: logoGlow 3s ease-in-out infinite alternate;
}
@keyframes logoGlow {
from {
filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3)) brightness(1.1);
transform: scale(1);
}
to {
filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.5)) brightness(1.2);
transform: scale(1.02);
}
}
.hero-subtitle {
font-size: 1.5rem;
color: #cccccc;
margin-bottom: 2rem;
font-style: italic;
}
.hero-description {
font-size: 1.1rem;
color: #999999;
max-width: 600px;
margin: 0 auto 3rem;
}
.cta-button {
background: linear-gradient(45deg, #8b5cf6, #6366f1);
color: white;
padding: 1rem 2rem;
border: none;
border-radius: 50px;
font-size: 1.1rem;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
}
.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}
/* Section Styles */
.section {
display: none;
padding: 6rem 2rem;
max-width: 1200px;
margin: 0 auto;
}
.section.active {
display: block;
}
.section h2 {
font-size: 2.5rem;
margin-bottom: 2rem;
text-align: center;
background: linear-gradient(45deg, #ffffff, #8b5cf6);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* About Section */
.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
margin-bottom: 4rem;
}
.about-text {
font-size: 1.1rem;
line-height: 1.8;
color: #cccccc;
}
.about-image {
width: 100%;
height: 300px;
background: linear-gradient(45deg, #8b5cf6, #6366f1);
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
color: white;
}
/* Members Grid */
.members-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.member-card {
background: linear-gradient(145deg, #1a1a2e, #16213e);
border-radius: 20px;
padding: 2rem;
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.member-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}
.member-image {
width: 150px;
height: 150px;
background: linear-gradient(45deg, #8b5cf6, #6366f1);
border-radius: 50%;
margin: 0 auto 1rem;
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
color: white;
}
.member-name {
font-size: 1.3rem;
font-weight: bold;
margin-bottom: 0.5rem;
}
.member-role {
color: #8b5cf6;
margin-bottom: 1rem;
font-style: italic;
}
.member-description {
color: #cccccc;
line-height: 1.6;
margin-bottom: 1.5rem;
}
.member-link {
background: rgba(139, 92, 246, 0.2);
color: #8b5cf6;
padding: 0.5rem 1rem;
border-radius: 25px;
text-decoration: none;
transition: all 0.3s ease;
}
.member-link:hover {
background: #8b5cf6;
color: white;
}
/* Music Section */
.music-categories {
display: flex;
justify-content: center;
gap: 2rem;
margin-bottom: 3rem;
}
.category-btn {
background: rgba(139, 92, 246, 0.2);
color: #8b5cf6;
border: none;
padding: 1rem 2rem;
border-radius: 25px;
cursor: pointer;
transition: all 0.3s ease;
}
.category-btn.active, .category-btn:hover {
background: #8b5cf6;
color: white;
}
.music-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.music-card {
background: linear-gradient(145deg, #1a1a2e, #16213e);
border-radius: 15px;
padding: 1.5rem;
transition: transform 0.3s ease;
}
.music-card:hover {
transform: translateY(-5px);
}
.music-thumbnail {
width: 100%;
height: 200px;
background: linear-gradient(45deg, #8b5cf6, #6366f1);
border-radius: 10px;
margin-bottom: 1rem;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
color: white;
}
/* Contact Section */
.contact-form {
max-width: 600px;
margin: 0 auto;
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
color: #cccccc;
}
.form-group input, .form-group textarea {
width: 100%;
padding: 1rem;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 10px;
color: white;
font-size: 1rem;
}
.form-group input:focus, .form-group textarea:focus {
outline: none;
border-color: #8b5cf6;
}
.contact-info {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.contact-item {
text-align: center;
padding: 2rem;
background: linear-gradient(145deg, #1a1a2e, #16213e);
border-radius: 15px;
}
/* Mobile Styles */
@media (max-width: 768px) {
.nav-links {
display: none;
flex-direction: column;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: rgba(10, 10, 10, 0.95);
padding: 2rem;
}
.nav-links.active {
display: flex;
}
.mobile-menu {
display: flex;
}
.hero-logo {
width: 300px;
}
.hero-subtitle {
font-size: 1.2rem;
}
.about-content {
grid-template-columns: 1fr;
text-align: center;
}
.music-categories {
flex-direction: column;
align-items: center;
}
.navbar {
padding: 1rem;
}
.section {
padding: 4rem 1rem;
}
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="nav-container">
<div class="logo">
<img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60'%3E%3Ctext x='100' y='35' font-family='Arial, sans-serif' font-size='24' font-weight='bold' fill='%23ffffff' text-anchor='middle'%3ETalash Crew%3C/text%3E%3C/svg%3E" alt="Talash Crew Logo">
</div>
<ul class="nav-links">
<li><a onclick="showSection('home')">Home</a></li>
<li><a onclick="showSection('about')">About</a></li>
<li><a onclick="showSection('covers')">Covers</a></li>
<li><a onclick="showSection('originals')">Originals</a></li>
<li><a onclick="showSection('contact')">Contact</a></li>
</ul>
<div class="mobile-menu" onclick="toggleMobileMenu()">
<span></span>
<span></span>
<span></span>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero">
<div class="hero-bg"></div>
<div class="hero-content">
<img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 120'%3E%3Ctext x='200' y='80' font-family='Arial, sans-serif' font-size='48' font-weight='bold' fill='%23ffffff' text-anchor='middle'%3ETalash Crew%3C/text%3E%3C/svg%3E" alt="Talash Crew Logo" class="hero-logo">
<p class="hero-subtitle">Raw Real Tlash</p>
<p class="hero-description">
We are a passionate band from NIT Raipur, bringing you authentic music that resonates with the soul.
Our sound is raw, our passion is real, and our tlash is unstoppable.
</p>
<button class="cta-button" onclick="showSection('about')">Discover Our Story</button>
</div>
</section>
<!-- About Section -->
<section id="about" class="section">
<h2>About Us</h2>
<div class="about-content">
<div class="about-text">
<h3 style="color: #8b5cf6; margin-bottom: 1rem;">Our Journey</h3>
<p>Born in the corridors of National Institute of Technology Raipur, Tlash Crew represents the raw energy and passion of college life. We're not just a band; we're a movement that believes in authentic expression through music.</p>
<br>
<p>Our motto "Raw Real Tlash" embodies everything we stand for - unfiltered emotions, genuine connections, and the relentless pursuit of musical excellence. As NITians, we bring technical precision to our artistic expression.</p>
</div>
<div class="about-image">
🎵 Tlash Crew 🎸
</div>
</div>
<h3 style="text-align: center; margin: 3rem 0 2rem; color: #8b5cf6;">Meet Our Members</h3>
<div class="members-grid">
<div class="member-card">
<div class="member-image">🎤</div>
<h3 class="member-name">Lead Vocalist</h3>
<p class="member-role">Vocals & Stage Presence</p>
<p class="member-description">The voice that carries our raw emotions to the audience. With powerful vocals and magnetic stage presence, they bring our stories to life.</p>
<a href="#" class="member-link">View Profile</a>
</div>
<div class="member-card">
<div class="member-image">🎸</div>
<h3 class="member-name">Lead Guitarist</h3>
<p class="member-role">Electric Guitar & Composition</p>
<p class="member-description">The sonic architect behind our sound. Creating riffs that resonate and solos that speak directly to the heart.</p>
<a href="#" class="member-link">View Profile</a>
</div>
<div class="member-card">
<div class="member-image">🥁</div>
<h3 class="member-name">Drummer</h3>
<p class="member-role">Percussion & Rhythm</p>
<p class="member-description">The heartbeat of Tlash Crew. Providing the foundation that drives our energy and keeps the audience moving.</p>
<a href="#" class="member-link">View Profile</a>
</div>
<div class="member-card">
<div class="member-image">🎸</div>
<h3 class="member-name">Bassist</h3>
<p class="member-role">Bass Guitar & Groove</p>
<p class="member-description">The groove master who adds depth and soul to every track. Creating the foundation that makes you feel the music.</p>
<a href="#" class="member-link">View Profile</a>
</div>
</div>
</section>
<!-- Covers Section -->
<section id="covers" class="section">
<h2>Our Covers</h2>
<p style="text-align: center; color: #cccccc; margin-bottom: 3rem;">
We take beloved songs and give them our raw, authentic twist. Each cover is a reinterpretation that stays true to our tlash.
</p>
<div class="music-grid">
<div class="music-card">
<div class="music-thumbnail">🎵</div>
<h3>Rock Classic Cover</h3>
<p style="color: #cccccc;">Our powerful rendition of a timeless rock anthem with our signature raw energy.</p>
</div>
<div class="music-card">
<div class="music-thumbnail">🎶</div>
<h3>Bollywood Fusion</h3>
<p style="color: #cccccc;">A modern take on classic Bollywood hits, infused with contemporary rock elements.</p>
</div>
<div class="music-card">
<div class="music-thumbnail">🎸</div>
<h3>Indie Reimagined</h3>
<p style="color: #cccccc;">Independent hits given the Tlash Crew treatment with raw vocals and powerful instrumentation.</p>
</div>
</div>
</section>
<!-- Originals Section -->
<section id="originals" class="section">
<h2>Original Compositions</h2>
<p style="text-align: center; color: #cccccc; margin-bottom: 3rem;">
These are our stories, our emotions, and our experiences translated into music. Pure, unfiltered Tlash Crew.
</p>
<div class="music-grid">
<div class="music-card">
<div class="music-thumbnail">✨</div>
<h3>NIT Nights</h3>
<p style="color: #cccccc;">An anthem about late-night study sessions, friendships, and the college experience that shapes us.</p>
</div>
<div class="music-card">
<div class="music-thumbnail">🌟</div>
<h3>Raw Dreams</h3>
<p style="color: #cccccc;">A powerful ballad about chasing dreams against all odds, with raw emotion and soaring melodies.</p>
</div>
<div class="music-card">
<div class="music-thumbnail">🔥</div>
<h3>Tlash Revolution</h3>
<p style="color: #cccccc;">Our signature track that defines who we are - energetic, rebellious, and authentically us.</p>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="section">
<h2>Get In Touch</h2>
<p style="text-align: center; color: #cccccc; margin-bottom: 3rem;">
Ready to experience raw real tlash? Let's connect and create something amazing together.
</p>
<form class="contact-form">
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="subject">Subject</label>
<input type="text" id="subject" name="subject" required>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" rows="5" required></textarea>
</div>
<div style="text-align: center;">
<button type="submit" class="cta-button">Send Message</button>
</div>
</form>
<div class="contact-info">
<div class="contact-item">
<h3 style="color: #8b5cf6; margin-bottom: 1rem;">📧 Email</h3>
<p>tlashcrew@nitrrp.ac.in</p>
</div>
<div class="contact-item">
<h3 style="color: #8b5cf6; margin-bottom: 1rem;">📱 Social Media</h3>
<p>Follow us for latest updates and behind-the-scenes content</p>
</div>
<div class="contact-item">
<h3 style="color: #8b5cf6; margin-bottom: 1rem;">🏫 Location</h3>
<p>National Institute of Technology<br>Raipur, Chhattisgarh</p>
</div>
</div>
</section>
<script>
// Load and display the logo images
async function loadLogos() {
try {
const logoData = await window.fs.readFile('image.png');
const blob = new Blob([logoData], { type: 'image/png' });
const logoSrc = URL.createObjectURL(blob);
// Update navbar logo
const navbarLogo = document.querySelector('.logo img');
if (navbarLogo) {
navbarLogo.src = logoSrc;
}
// Update hero logo
const heroLogo = document.querySelector('.hero-logo');
if (heroLogo) {
heroLogo.src = logoSrc;
}
} catch (error) {
// Try alternative filename
try {
const logoData = await window.fs.readFile('image');
const blob = new Blob([logoData], { type: 'image/png' });
const logoSrc = URL.createObjectURL(blob);
// Update navbar logo
const navbarLogo = document.querySelector('.logo img');
if (navbarLogo) {
navbarLogo.src = logoSrc;
}
// Update hero logo
const heroLogo = document.querySelector('.hero-logo');
if (heroLogo) {
heroLogo.src = logoSrc;
}
} catch (error2) {
console.log('Could not load uploaded logo, using fallback');
}
}
}
// Navigation functionality
function showSection(sectionId) {
// Hide all sections
const sections = document.querySelectorAll('.section, .hero');
sections.forEach(section => {
section.style.display = 'none';
section.classList.remove('active');
});
// Show selected section
if (sectionId === 'home') {
document.querySelector('.hero').style.display = 'flex';
} else {
const targetSection = document.getElementById(sectionId);
targetSection.style.display = 'block';
targetSection.classList.add('active');
}
// Close mobile menu if open
document.querySelector('.nav-links').classList.remove('active');
}
// Mobile menu toggle
function toggleMobileMenu() {
const navLinks = document.querySelector('.nav-links');
navLinks.classList.toggle('active');
}
// Form submission
document.querySelector('.contact-form').addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you for your message! We\'ll get back to you soon with our raw real tlash energy!');
this.reset();
});
// Smooth scrolling for navbar
window.addEventListener('scroll', function() {
const navbar = document.querySelector('.navbar');
if (window.scrollY > 100) {
navbar.style.background = 'rgba(10, 10, 10, 0.98)';
} else {
navbar.style.background = 'rgba(10, 10, 10, 0.95)';
}
});
// Initialize
document.addEventListener('DOMContentLoaded', function() {
showSection('home');
loadLogos(); // Load the uploaded logo images
});
</script>
</body>
</html>