-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
717 lines (687 loc) · 36.9 KB
/
index.html
File metadata and controls
717 lines (687 loc) · 36.9 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
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Embedded Systems Design Club - GCEK</title>
<meta name="description"
content="Official website of Embedded Systems Design Club, Government College of Engineering Kannur">
<link rel="icon" type="image/png" href="icons/logo.png">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.0/font/bootstrap-icons.css">
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="nav-container">
<div class="nav-logo">
<h2>ESDC</h2>
</div>
<ul class="nav-menu">
<li><a href="#home" class="nav-link">Home</a></li>
<li><a href="#about" class="nav-link">About</a></li>
<li><a href="#projects" class="nav-link">Projects</a></li>
<li><a href="#team" class="nav-link">Team</a></li>
<li><a href="#contact" class="nav-link">Contact</a></li>
<li id="login-nav-item" class="d-none"><a href="login.html" class="nav-link" id="login-btn">Login</a></li>
<li id="profile-nav-item" class="d-none"><a href="user_profile.html" class="nav-link" id="profile-link">Profile</a></li>
<li id="logout-nav-item" class="d-none"><a href="#" class="nav-link" id="logout-btn">Logout</a></li>
</ul>
<div class="theme-toggle">
<button id="theme-toggle-btn" class="theme-btn" aria-label="Toggle theme">
<span class="theme-icon">🌙</span>
</button>
</div>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero">
<div class="container">
<div class="hero-content">
<h1 class="hero-title">Embedded Systems Design Club</h1>
<h2 class="hero-subtitle">Government College of Engineering Kannur</h2>
<p class="hero-description">
Empowering students to explore the fascinating world of embedded systems, IoT, and hardware design
through hands-on learning and innovative projects.
</p>
<div class="hero-buttons">
<a href="#about" class="btn btn-primary">Learn More</a>
<a href="https://chat.whatsapp.com/BKA9R6hfyMM2VE23a8UzkW" target="_blank" class="btn btn-secondary">Join Us</a>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="about">
<div class="container">
<div class="section-header">
<h2>About ESDC</h2>
<p>Bridging the gap between theory and practical implementation</p>
</div>
<div class="about-grid">
<div class="about-card">
<div class="card-icon">🔧</div>
<h3>Hands-on Learning</h3>
<p>Learn by doing with real embedded systems projects, from basic microcontroller programming to
advanced IoT applications.</p>
</div>
<div class="about-card">
<div class="card-icon">🚀</div>
<h3>Innovation Hub</h3>
<p>Foster creativity and innovation in embedded systems design, encouraging students to push the
boundaries of technology.</p>
</div>
<div class="about-card">
<div class="card-icon">👥</div>
<h3>Community</h3>
<p>Build a strong community of embedded systems enthusiasts, sharing knowledge and collaborating on
exciting projects.</p>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="projects">
<div class="container">
<div class="section-header">
<h2>Our Projects</h2>
<p>Explore our innovative embedded systems projects</p>
</div>
<div class="projects-grid">
<a href="projects/ai-voice-assistant.html" class="project-card">
<div class="project-image">
<img src="https://images.unsplash.com/photo-1680783954745-3249be59e527?q=80&w=764&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"
alt="AI Voice Assistant"
style="width: 100%; height: 100%; object-fit: cover; border-radius: 8px;">
</div>
<div class="project-content">
<h3>AI Voice Assistant</h3>
<p>An intelligent voice-controlled assistant using machine learning and natural language
processing for seamless human-computer interaction.</p>
<div class="project-tags">
<span class="tag">AI</span>
<span class="tag">NLP</span>
<span class="tag">Voice Recognition</span>
</div>
</div>
</a>
<a href="projects/autonomous-robot.html" class="project-card">
<div class="project-image">
<img src="https://images.unsplash.com/photo-1589254065878-42c9da997008?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"
alt="Autonomous Robot"
style="width: 100%; height: 100%; object-fit: cover; border-radius: 8px;">
</div>
<div class="project-content">
<h3>Humanoid Robot</h3>
<p>Line-following robot with obstacle avoidance capabilities using Arduino and various sensors.
</p>
<div class="project-tags">
<span class="tag">Arduino</span>
<span class="tag">Robotics</span>
<span class="tag">AI</span>
</div>
</div>
</a>
<a href="projects/" class="project-card">
<div class="project-image">
<img src="imgs/assistant_ui1.png"
alt="AI Voice Assistant UI"
style="width: 100%; height: 100%; object-fit: cover; border-radius: 8px;">
</div>
<div class="project-content">
<h3>AI Voice Assistant UI</h3>
<p>Interactive user interface for AI-powered voice assistant with modern design and seamless user experience.</p>
<div class="project-tags">
<span class="tag">UI/UX</span>
<span class="tag">JavaScript</span>
<span class="tag">React</span>
</div>
</div>
</a>
<!-- <div class="project-card">
<div class="project-image">
<div class="project-placeholder">🏠</div>
</div>
<div class="project-content">
<h3>Smart Home System</h3>
<p>Home automation system with remote monitoring and control capabilities using Raspberry Pi.</p>
<div class="project-tags">
<span class="tag">Raspberry Pi</span>
<span class="tag">Home Automation</span>
<span class="tag">Python</span>
</div>
</div>
</div> -->
</div>
<div class="projects-buttons">
<a href="https://github.com/orgs/Embedded-Systems-GCEK/repositories" target="_blank" class="btn btn-primary">Check out our repos</a>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/projects?query=is%3Aopen" target="_blank" class="btn btn-secondary">Check out our currently working projects</a>
</div>
</div>
</section>
<!-- Team Section -->
<section id="team" class="team">
<div class="container">
<div class="section-header">
<h2>Our Team</h2>
<p>Meet the passionate individuals driving ESDC forward</p>
</div>
<!-- AI Assistant Team -->
<div class="team-category">
<h3>AI Assistant Team</h3>
<p class="team-description">Developing AI-powered solutions and assistants</p>
<div class="team-members">
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/aruncs31s.png" alt="Arun cs"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Arun cs</h4>
<p class="team-role">Designer</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/aruncs31s"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/vyshnav8486.png" alt="vyshnav kp"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>vyshnav kp</h4>
<p class="team-role">Designer</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/vyshnav8486"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">👨💻</div>
<h4>Abhaya Govind</h4>
<p class="team-role">Developer</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/AbhayaGovind"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/dhanashyam18.png" alt="Dhanashyam Babu"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Dhanashyam Babu</h4>
<p class="team-role">Developer</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/dhanashyam18"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/AmayaPramod.png" alt="Amaya Pramod"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Amaya Pramod. P. V</h4>
<p class="team-role">Developer</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/AmayaPramod"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/Nivedh-r.png" alt="Nivedh-r"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Nivedh-r</h4>
<p class="team-role">Developer</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/Nivedh-r"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/MeenakshiPoyyil.png" alt="Meenakshi Poyyil"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Meenakshi Poyyil</h4>
<p class="team-role">Tester</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/MeenakshiPoyyil"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/Sneha-SJ-05.png" alt="Sneha-SJ-05"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Sneha-SJ-05</h4>
<p class="team-role">Tester</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/Sneha-SJ-05"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">🔧</div>
<h4>Albertjoe007</h4>
<p class="team-role">Refactorer</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/Albertjoe007"
class="github-link">GitHub</a>
</div>
</div>
</div>
<!-- AI Assistant UI Team -->
<div class="team-category">
<h3>AI Assistant UI Team</h3>
<p class="team-description">Designing user interfaces for AI applications</p>
<div class="team-members">
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/aruncs31s.png" alt="Arun cs"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Arun cs</h4>
<p class="team-role">Designer</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/aruncs31s"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/AbhayaGovind.png" alt="Abhaya Govind"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Abhaya Govind</h4>
<p class="team-role">Designer, Developer</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/AbhayaGovind"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/MeenakshiPoyyil.png" alt="Meenakshi Poyyil"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Meenakshi Poyyil</h4>
<p class="team-role">Developer, Tester</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/MeenakshiPoyyil"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/Sneha-SJ-05.png" alt="Sneha-SJ-05"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Sneha-SJ-05</h4>
<p class="team-role">Developer, Tester</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/Sneha-SJ-05"
class="github-link">GitHub</a>
</div>
</div>
</div>
<!-- Hardware Team -->
<div class="team-category">
<h3>Hardware Team</h3>
<p class="team-description">Building and designing hardware solutions</p>
<div class="team-members">
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/aruncs31s.png" alt="Arun cs"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Arun cs</h4>
<p class="team-role">Designer</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/aruncs31s"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/MeenakshiPoyyil.png" alt="Meenakshi Poyyil"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Meenakshi Poyyil</h4>
<p class="team-role">Designer</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/MeenakshiPoyyil"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/Sangeeth-binu.png" alt="Sangeeth Binu"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Sangeeth Binu</h4>
<p class="team-role">Designer</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/Sangeeth-binu"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/AbhayaGovind.png" alt="Abhaya Govind"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Abhaya Govind</h4>
<p class="team-role">Builder</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/AbhayaGovind"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/DEEPIKARAJAN-E.png" alt="Deepika Rajan"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Deepika Rajan</h4>
<p class="team-role">Builder</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/DEEPIKARAJAN-E"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/isro19692004geck.png" alt="Anu19692004"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Anu19692004</h4>
<p class="team-role">Builder</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/isro19692004geck"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/Krishnasree-A-V.png" alt="Krishnasree-A-V"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Krishnasree-A-V</h4>
<p class="team-role">Builder</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/Krishnasree-A-V"
class="github-link">GitHub</a>
</div>
</div>
</div>
<!-- Software Team -->
<div class="team-category">
<h3>Software Team</h3>
<p class="team-description">Developing software solutions and applications</p>
<div class="team-members">
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/harikeshop1989.png" alt="Harikesh O P"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Harikesh O P</h4>
<p class="team-role">Designer, Developer</p>
<a href="https://github.com/harikeshop1989" class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/MeenakshiPoyyil.png" alt="Meenakshi Poyyil"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Meenakshi Poyyil</h4>
<p class="team-role">Designer, Developer</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/MeenakshiPoyyil"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/Sangeeth-binu.png" alt="Sangeeth Binu"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Sangeeth Binu</h4>
<p class="team-role">Designer, Developer</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/Sangeeth-binu"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/AbhinavM2005.png" alt="AbhinavM2005"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>AbhinavM2005</h4>
<p class="team-role">Designer</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/AbhinavM2005"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/Saifali1256.png" alt="Saifali1256"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Saifali1256</h4>
<p class="team-role">Member</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/Saifali1256"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/aruncs31s.png" alt="Arun cs"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Arun cs</h4>
<p class="team-role">Member</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/aruncs31s"
class="github-link">GitHub</a>
</div>
</div>
</div>
<!-- Web Team -->
<div class="team-category">
<h3>Web Team</h3>
<p class="team-description">Creating and maintaining web applications</p>
<div class="team-members">
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/aruncs31s.png" alt="Arun cs"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Arun cs</h4>
<p class="team-role">Designer, Developer</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/aruncs31s"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/sanjusathian.png" alt="sanjusathian"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>sanjusathian</h4>
<p class="team-role">Designer, Developer</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/sanjusathian"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/the-unknown-monkey.png" alt="the-unknown-monkey"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>the-unknown-monkey</h4>
<p class="team-role">Designer, Developer</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/the-unknown-monkey"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/AbhayaGovind.png" alt="Abhaya Govind"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Abhaya Govind</h4>
<p class="team-role">Developer</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/AbhayaGovind"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/Sangeeth-binu.png" alt="Sangeeth Binu"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Sangeeth Binu</h4>
<p class="team-role">Member</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/Sangeeth-binu"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/Sneha-SJ-05.png" alt="Sneha-SJ-05"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Sneha-SJ-05</h4>
<p class="team-role">Developer</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/Sneha-SJ-05"
class="github-link">GitHub</a>
</div>
<div class="team-card">
<div class="team-avatar">
<img src="https://github.com/dhanashyam18.png" alt="Dhanashyam Babu"
style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
</div>
<h4>Dhanashyam Babu</h4>
<p class="team-role">Developer</p>
<a href="https://github.com/orgs/Embedded-Systems-GCEK/people/dhanashyam18"
class="github-link">GitHub</a>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact">
<div class="container">
<div class="section-header">
<h2>Get In Touch</h2>
<p>Join our community and start your embedded systems journey</p>
</div>
<div class="contact-content">
<div class="contact-info">
<div class="contact-item">
<div class="contact-icon">📍</div>
<div>
<h3>Location</h3>
<p>Government College of Engineering Kannur<br>Kannur, Kerala, India</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">📧</div>
<div>
<h3>Email</h3>
<p>esdc@gcek.ac.in</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">🌐</div>
<div>
<h3>Connect</h3>
<p>Follow us on social media for updates and announcements</p>
</div>
</div>
</div>
<div class="contact-form-container">
<div class="contact-whatsapp">
<h3>Join Our Community</h3>
<p>Connect with fellow embedded systems enthusiasts, ask questions, and stay updated with our latest projects and events.</p>
<a href="https://chat.whatsapp.com/BKA9R6hfyMM2VE23a8UzkW" target="_blank" class="btn btn-primary whatsapp-btn">
<img src="icons/whatsapp.png" alt="WhatsApp" class="whatsapp-icon">
Join WhatsApp Group
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h3>ESDC</h3>
<p>Embedded Systems Design Club<br>Government College of Engineering Kannur</p>
</div>
<div class="footer-section">
<h4>Quick Links</h4>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Resources</h4>
<ul>
<li><a href="#">Documentation</a></li>
<li><a href="#">Tutorials</a></li>
<li><a href="https://github.com/Embedded-Systems-GCEK" target="_blank">GitHub</a></li>
<li><a href="https://github.com/orgs/Embedded-Systems-GCEK/discussions" target="_blank">Community Discussions</a></li>
<li><a href="#">Blog</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 Embedded Systems Design Club, GCEK. All rights reserved.</p>
</div>
</div>
</footer>
<!-- Supabase -->
<script src="https://cdn.jsdelivr.net/npm/@supabase/supabase-js@2"></script>
<script src="js/config.js"></script>
<script>
// Initialize Supabase
const supabase = window.supabase.createClient(window.SUPABASE_CONFIG.URL, window.SUPABASE_CONFIG.ANON_KEY);
// DOM elements for navigation (will be set after DOM loads)
let loginNavItem, profileNavItem, logoutNavItem, loginBtn, logoutBtn;
// Initialize authentication state
document.addEventListener('DOMContentLoaded', async () => {
// Get DOM elements after DOM is loaded
loginNavItem = document.getElementById('login-nav-item');
profileNavItem = document.getElementById('profile-nav-item');
logoutNavItem = document.getElementById('logout-nav-item');
loginBtn = document.getElementById('login-btn');
logoutBtn = document.getElementById('logout-btn');
await checkAuthState();
});
async function checkAuthState() {
try {
const { data: { session } } = await supabase.auth.getSession();
if (session?.user) {
showAuthenticatedNav();
} else {
showUnauthenticatedNav();
}
} catch (error) {
console.error('Auth check error:', error);
showUnauthenticatedNav();
}
}
function showAuthenticatedNav() {
if (loginNavItem) loginNavItem.classList.add('d-none');
if (profileNavItem) profileNavItem.classList.remove('d-none');
if (logoutNavItem) logoutNavItem.classList.remove('d-none');
}
function showUnauthenticatedNav() {
if (loginNavItem) loginNavItem.classList.remove('d-none');
if (profileNavItem) profileNavItem.classList.add('d-none');
if (logoutNavItem) logoutNavItem.classList.add('d-none');
}
// Login functionality - now links to dedicated login page
// OAuth is handled on the login.html page
// Logout functionality
if (logoutBtn) {
logoutBtn.addEventListener('click', async (e) => {
e.preventDefault();
try {
const { error } = await supabase.auth.signOut();
if (error) throw error;
showUnauthenticatedNav();
alert('Successfully logged out!');
} catch (error) {
console.error('Logout error:', error);
alert('Logout failed: ' + error.message);
}
});
}
// Listen for auth state changes
supabase.auth.onAuthStateChange((event, session) => {
if (event === 'SIGNED_IN' && session) {
showAuthenticatedNav();
} else if (event === 'SIGNED_OUT') {
showUnauthenticatedNav();
}
});
</script>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>