-
Notifications
You must be signed in to change notification settings - Fork 296
Expand file tree
/
Copy pathindex.html
More file actions
771 lines (700 loc) · 28.3 KB
/
index.html
File metadata and controls
771 lines (700 loc) · 28.3 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
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CodeClip</title>
<!-- ================ Favicon ================ -->
<link
rel="shortcut icon"
href="assets/favicon/codeClip-favicon.png"
type="image/png"
/>
<!-- ================ Meta Tags ================ -->
<meta
name="keywords"
content="CodeClip, Coding Challenges, Open Source, GSSoC, Frontend Practice, JavaScript Logics, GitHub Contributions, Web Development Tasks"
/>
<meta
name="description"
content="CodeClip is a browser-based platform where developers solve real-world coding challenges, practice frontend and logic tasks, and contribute to open source. Proudly built for GSSoC 2025."
/>
<meta name="robots" content="index, follow" />
<meta property="og:type" content="website" />
<meta property="og:title" content="CodeClip - Code, Run & Contribute" />
<meta
property="og:description"
content="Solve coding challenges, contribute to open source, and climb the leaderboard on CodeClip. A GSSoC 2025 project for developers."
/>
<meta
property="twitter:title"
content="CodeClip - Code, Run & Contribute"
/>
<meta
property="twitter:description"
content="Solve coding challenges, contribute to open source, and climb the leaderboard on CodeClip. A GSSoC 2025 project for developers."
/>
<!-- ================ Vendor CSS ================ -->
<!-- ================ Vendor CSS ================ -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles/owl.carousel.min.css" />
<link rel="stylesheet" href="styles/owl.theme.default.min.css" />
<link rel="stylesheet" href="styles/fontawesome.css" />
<!-- Custom CSS & External Libraries -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/devicon.min.css"
/>
<!-- Global / Main Styles -->
<link rel="stylesheet" href="styles/main.css" />
<link rel="stylesheet" href="./styles.css" />
<!-- External Libraries -->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<!-- Optional: Challenge-specific styles -->
<!-- <link rel="stylesheet" href="../styles/challenges.css" /> -->
<!-- === SMART PROGRESS DASHBOARD FEATURE START === -->
<link rel="stylesheet" href="./styles/progress-dashboard.css" />
<!-- === SMART PROGRESS DASHBOARD FEATURE END === -->
<!-- Inline custom tweaks -->
<style>
.icon-container {
display: flex;
gap: 6px;
margin: 8px 0;
font-size: 24px;
}
.icon-container i {
transition: transform 0.2s ease;
}
.icon-container i:hover {
transform: scale(1.2);
}
.navbar-light .navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Added: make the GSSOC logo responsive and centered */
.gssocContainer {
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
gap: 6px;
}
.gssoc-logo {
width: 140px; /* base size for small screens */
max-width: 35%; /* responsive cap */
height: auto;
display: block;
object-fit: contain;
margin: 0 auto;
border-radius: 8px; /* subtle rounding if needed */
}
/* Slightly larger logo on medium+ screens */
@media (min-width: 768px) {
.gssoc-logo {
width: 180px;
max-width: 220px;
}
}
/* preserve existing animation hover behaviour (if any) */
/* ===== Navbar-safe spacing (prevents fixed-top overlap) =====
Uses a CSS variable that we set from JS to the real navbar height.
*/
:root {
--navbar-height: 72px; /* fallback */
}
/* push page content below fixed navbar and make anchor scrolling correct */
body {
padding-top: var(--navbar-height);
scroll-padding-top: var(--navbar-height);
}
/* small-screen fallback */
@media (max-width: 576px) {
:root { --navbar-height: 56px; }
}
/* small visual spacing inside hero */
.heroSection {
padding-top: 0.5rem;
}
</style>
</head>
<body>
<!-- Loading Screen -->
<div id="loading-screen">
<div class="loader">
<i class="fa-solid fa-spinner"></i>
<h2>Loading<span class="dots"></span></h2>
</div>
</div>
<a id="top"></a> <!--added for issue 260 -->
<!-- ================================ Header Section Start Here ================================ -->
<!-- ================================ Updated Navbar ================================ -->
<nav class="navbar navbar-expand-lg fixed-top custom-navbar">
<div class="container">
<!-- Brand / Logo -->
<a class="navbar-brand fw-bold logo-text" href="#top">
<i class="fa-solid fa-code me-2"></i>Code<span>Clip</span>
</a>
<!-- Toggler for Mobile -->
<button
class="navbar-toggler border-0"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<!-- Navbar Links -->
<div class="collapse navbar-collapse justify-content-end" id="navbarNav">
<ul class="navbar-nav align-items-center">
<li class="nav-item">
<a class="nav-link active" href="#top">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#challengeSection">Challenges</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#leaderboardSection">Leaderboard</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#aboutSection">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contactFooter">Contact</a>
</li>
<li class="nav-item ms-lg-3">
<a
href="https://github.com/opensource-society/CodeClip"
target="_blank"
class="btn btn-primary btn-sm contribute-btn"
>
<i class="fa-brands fa-github me-1"></i> Contribute
</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- ================================ Updated Navbar Ends ================================ -->
<!-- ================================ Header Section Start Here ================================ -->
<main>
<!-- ================================ Hero Section Start Here ================================ -->
<section id="top" class="heroSection">
<div class="container">
<div class="row heroSection-Container">
<div class="col-12 col-md-6 heroSection-Left">
<div data-aos="fade-right" data-aos-duration="650" class="gssocContainer shinning-effect">
<img
src="assets/images/hero-section/gssoc-log.png"
class="img-fluid gssoc-logo"
alt="gssoc logo"
/>
<p>GSSOC 2025</p>
</div>
<h1 data-aos="fade-right" data-aos-duration="650">
Code Run <br />
<span class="blueCol">Contribute</span>
</h1>
<p data-aos="fade-right" data-aos-duration="650" class="heroDescription text-muted">
CodeClip is a lightweight, browser-based platform designed to make
coding practice simple, accessible, and collaborative. Whether
you're a beginner looking to sharpen your skills or an aspiring
contributor to open source, CodeClip offers a clean interface
where you can solve real-world coding challenges, run your code
live, and share your solutions — all without any setup, Built
entirely with HTML, CSS, and JavaScript, CodeClip is not just a
tool but a learning experience itself. It’s an open-source project
proudly developed as part of
<strong>GirlScript Summer of Code (GSSoC)</strong>, aimed at
empowering developers through hands-on practice and meaningful
contributions.
</p>
<!-- ==== Do Changes According to requirements === -->
<div class="ctaBtn-Container">
<button data-aos-duration="650" data-aos="fade-right" class="btn heroSectionBtn">
<i class="fa-solid fa-gear"></i> Code
</button>
<button data-aos-duration="650" data-aos="fade-right" class="btn heroSectionBtn">
<i class="fa-solid fa-cloud"></i> Run
</button>
</div>
</div>
<div class="col-12 col-md-6 heroSection-Right d-none d-md-block">
<img data-aos="zoom-in-left"
src="assets/images/hero-section/hero-Img.png"
class="img-fluid"
alt="hero section image"
/>
</div>
</div>
</div>
</section>
<!-- ================================ Hero Section End Here ================================ -->
<!-- ================================ Challenge Section Start Here ================================ -->
<section id="challengeSection">
<div class="container">
<div class="row challengeContainer">
<!-- ==== Card 1 ==== -->
<div class="col-12 col-md-4">
<div data-aos-duration="800" data-aos="fade-up" class="card">
<div class="card-body">
<div class="card-TopContainer">
<h5 class="card-Header">Frontend Challenges</h5>
<p class="card-Level medium-Col">EASY</p>
<div class="icon-container">
<i class="devicon-html5-plain colored" title="HTML5"></i>
<i class="devicon-css3-plain colored" title="CSS3"></i>
<i class="devicon-javascript-plain colored" title="JavaScript"></i>
</div>
</div>
<p class="card-Participate">
<i class="fa-solid fa-people-group"></i> 135 coders joined
</p>
<p data-aos-duration="800" data-aos="fade-up" class="card-Text">
Build real UI components using HTML, CSS, and JavaScript.
These tasks help you improve your layout, styling,
responsiveness, and interactivity,no frameworks, just clean
frontend skills.
</p>
<div class="card-CTAButton">
<!-- === Create webpage of frontend challenge and add link here === -->
<a href="frontendChallenges.html" class="card-Btn">Join Now</a>
</div>
</div>
</div>
</div>
<!-- ==== Card 2 ==== -->
<div class="col-12 col-md-4">
<div data-aos-duration="800" data-aos="fade-up" class="card">
<div class="card-body">
<div class="card-TopContainer">
<h5 class="card-Header">JavaScript Logics</h5>
<p class="card-Level medium-Col">MEDIUM</p>
<div class="icon-container">
<i class="devicon-javascript-plain colored" title="JavaScript"></i>
</div>
</div>
<p class="card-Participate">
<i class="fa-solid fa-people-group"></i> 189 coders joined
</p>
<p data-aos-duration="800" data-aos="fade-up" class="card-Text">
Master the core of JavaScript by solving logic-based problems
that boost your thinking and problem-solving skills. Perfect
for beginners and intermediates.
</p>
<div class="card-CTAButton">
<!-- === Create webpage of javascript logics and add link here === -->
<a href="jslogics.html" class="card-Btn">Join Now</a>
</div>
</div>
</div>
</div>
<!-- ==== Card 3 ==== -->
<div class="col-12 col-md-4">
<div data-aos-duration="800" data-aos="fade-up" class="card">
<div class="card-body">
<div class="card-TopContainer">
<h5 class="card-Header">Backend Basics</h5>
<p class="card-Level hard-Col">HARD</p>
<div class="icon-container">
<i class="devicon-nodejs-plain colored" title="Node.js"></i>
<i class="devicon-express-original colored" title="Express.js"></i>
</div>
</div>
<p class="card-Participate">
<i class="fa-solid fa-people-group"></i> 150 coders joined
</p>
<p data-aos-duration="800" data-aos="fade-up" class="card-Text">
Learn the fundamentals of backend development through simple
tasks using APIs, data handling, and server-side logic. A
great start for aspiring full-stack developers.
</p>
<div class="card-CTAButton">
<!-- === Create webpage of backend bbasic and add link here === -->
<a href="backendChallenges.html" class="card-Btn">Join Now</a>
</div>
</div>
</div>
</div>
<!-- ==== Card 4 ==== -->
<div data-aos-duration="800" data-aos="fade-up" class="col-12 col-md-4">
<div class="card">
<div class="card-body">
<div class="card-TopContainer">
<h5 class="card-Header">UI Design Tasks</h5>
<p class="card-Level">EASY</p>
<div class="icon-container">
<i class="devicon-html5-plain colored" title="HTML5"></i>
<i class="devicon-css3-plain colored" title="CSS3"></i>
</div>
</div>
<p class="card-Participate">
<i class="fa-solid fa-people-group"></i> 120 coders joined
</p>
<p data-aos-duration="800" data-aos="fade-up" class="card-Text">
Practice building beautiful and functional UI components using
HTML and CSS. Perfect for improving your design sense and
layout skills.
</p>
<div class="card-CTAButton">
<!-- === Create webpage of ui design challenge and add link here === -->
<a href="uiChallenges.html" class="card-Btn">Join Now</a>
</div>
</div>
</div>
</div>
<!-- ==== Card 5 ==== -->
<div class="col-12 col-md-4">
<div data-aos-duration="800" data-aos="fade-up" class="card">
<div class="card-body">
<div class="card-TopContainer">
<h5 class="card-Header">Open Source Challenges</h5>
<p class="card-Level medium-Col">MEDIUM</p>
<div class="icon-container">
<i class="devicon-git-plain colored" title="Git"></i>
<i class="devicon-github-original colored" title="GitHub"></i>
</div>
</div>
<p class="card-Participate">
<i class="fa-solid fa-people-group"></i> 200 coders joined
</p>
<p data-aos-duration="800" data-aos="fade-up" class="card-Text">
Practice real world contribution workflows using Git and
GitHub. You'll learn how to contribute to projects, manage
pull requests.
</p>
<div class="card-CTAButton">
<!-- === Create webpages of open source challenge and add link here === -->
<a href="gitChallenges.html" class="card-Btn">Join Now</a>
</div>
</div>
</div>
</div>
<!-- added card 6 -->
<!-- === Card 6 === -->
<div class="col-12 col-md-4">
<div data-aos-duration="800" data-aos="fade-up" class="card">
<div class="card-body">
<div class="card-TopContainer">
<h5 class="card-Header">JavaScript Mini Projects</h5>
<p class="card-Level medium-Col">Easy</p>
<div class="icon-container">
<i class="devicon-javascript-plain colored" title="JavaScript"></i>
<i class="devicon-css3-plain colored" title="CSS3"></i>
</div>
</div>
<p class="card-Participate">
<i class="fa-solid fa-people-group"></i> 300 coders joined
</p>
<p data-aos-duration="800" data-aos="fade-up" class="card-Text">
Created an interactive form/input area,Applied CSS styles for visual consistency .Added features like auto-focus, clear input after add, and animation.
</p>
<div class="card-CTAButton">
<!-- === Create webpages of open source challenge and add link here === -->
<a href="#" class="card-Btn">Join Now</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<style>
/* Section spacing */
#challengeSection {
padding: 2rem 0;
}
/* Bootstrap row gap fix */
.challengeContainer {
row-gap: 1.5rem; /* vertical spacing between rows */
}
/* Card styles */
.challengeContainer .card {
box-shadow: rgba(19, 117, 216, 0.2) 0px 8px 24px;
border: none;
border-radius: 15px;
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
height: 100%;
word-wrap: break-word; /* prevent long words from breaking layout */
overflow-wrap: break-word;
}
/* Card hover */
.challengeContainer .card:hover {
transform: translateY(-3px) scale(1.01);
box-shadow: 0 0 18px rgba(37, 99, 235, 0.45);
}
/* Card top container */
.card-TopContainer {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap; /* makes sure text + icons don’t overlap */
gap: 8px;
}
/* Header */
.card-Header {
font-size: 20px;
font-weight: 600;
margin-bottom: 0;
flex: 1 1 auto;
min-width: 120px;
}
/* Difficulty badge */
.card-Level {
font-size: 12px;
padding: 4px 20px;
border-radius: 17px;
font-weight: 700;
margin: 0 7px 0 0;
white-space: nowrap; /* keeps badge text on one line */
}
.medium-Col {
background-color: #fff3cd;
color: #a88825;
}
.hard-Col {
background-color: #f8d7da;
color: #7d1c1c;
}
/* Participation info */
.card-Participate {
font-size: 13px;
color: #666;
margin: 6px 0;
opacity: 0.9;
line-height: 1.4;
}
/* Description text */
.card-Text {
font-size: 14px;
opacity: 0.85;
text-align: justify;
line-height: 1.6;
hyphens: auto; /* breaks long words cleanly */
}
/* Button */
.card-CTAButton {
display: flex;
justify-content: flex-end;
}
.card-Btn {
text-decoration: none;
font-size: 13px;
padding: 8px 28px;
border-radius: 5px;
background-color: #2563eb;
color: white;
font-weight: 700;
transition: all 0.2s ease-in-out;
}
.card-Btn:hover {
background-color: #1d4ed8;
box-shadow: 0px 3px 8px rgba(0,0,0,0.25);
}
</style>
<!-- ================================ Challenge Section End Here ================================ -->
<!-- ================================ Leaderboard Section Starts Here ================================ -->
<section id="leaderboardSection" class="leaderboard-wrapper">
<div class="leaderboard-list">
<h2>
<span class="highlight">Top Coder</span> of the Week
</h2>
<p>
Meet our top coders who accepted challenges, wrote great code,
contributed to open source, and stood out as the best performers of the week.
</p>
<div class="leaderboard-row rank-1">
<span class="rank">#1</span>
<img src="assets/images/leaderboard-section/user-1.png" alt="User 1" class="leaderboard-Img">
<span class="userName">Rahul <span class="badge gold">🏆</span></span>
<span class="points">1250 pts</span>
</div>
<div class="leaderboard-row rank-2">
<span class="rank">#2</span>
<img src="assets/images/leaderboard-section/user-2.png" alt="User 2" class="leaderboard-Img">
<span class="userName">Manisha <span class="badge silver">🥈</span></span>
<span class="points">1180 pts</span>
</div>
<div class="leaderboard-row rank-3">
<span class="rank">#3</span>
<img src="assets/images/leaderboard-section/user-1.png" alt="User 3" class="leaderboard-Img">
<span class="userName">Pankaj <span class="badge bronze">🥉</span></span>
<span class="points">1100 pts</span>
</div>
<div class="leaderboard-row">
<span class="rank">#4</span>
<img src="assets/images/leaderboard-section/user-2.png" alt="User 4" class="leaderboard-Img">
<span class="userName">Simran</span>
<span class="points">980 pts</span>
</div>
</div>
</section>
<!-- ================================ Leaderboard Section End Here ================================ -->
<!-- ================================ About Section Start Here ================================ -->
<section id="aboutSection">
<div class="container">
<h3 data-aos-duration="650" data-aos="fade-up" class="secHeader"><span>About</span> CodeClip</h3>
<div class="row aboutContainer">
<div class="col-10">
<p data-aos-duration="650" data-aos="fade-up text-muted">
CodeClip is a lightweight, browser-based platform designed to make
coding practice simple, accessible, and collaborative. Whether
you're a beginner looking to sharpen your skills or an aspiring
contributor to open source, CodeClip offers a clean interface
where you can solve real-world coding challenges, run your code
live, and share your solutions — all without any setup, Built
entirely with HTML, CSS, and JavaScript, CodeClip is not just a
tool but a learning experience itself. It’s an open-source project
proudly developed as part of
<strong>GirlScript Summer of Code (GSSoC)</strong>, aimed at
empowering developers through hands-on practice and meaningful
contributions.
</p>
<p data-aos-duration="650" data-aos="fade-up" class="ctaBtn">
<a
href="https://github.com/opensource-society/CodeClip"
target="_blank"
title="click here to start contributing in CodeClip Project under GSSoC'25"
class="aboutCTA-Btn"
>Contribute to CodeClip</a
>
</p>
</div>
</div>
</div>
</section>
</main>
<!-- ================================ Footer Section Start Here ================================ -->
<footer id="contactFooter">
<div class="container">
<div class="row align-items-start justify-content-between py-4">
<div data-aos-duration="650" data-aos="fade-up" class="col-12 col-md-3 mb-4 mb-md-0 footer-logo-col">
<a class="navbar-brand mb-2" id="homeSection"
>Code<span>Clip</span></a
>
<p class="footer-desc mb-0 text-dark">
CodeClip is a open source project under GirlScript Summer of Code
(GSSoC) 2025 to open for contribution
</p>
</div>
<!-- Removed footer nav links when navbar is sticky issue #610 -->
<div class="col-12 col-md-6 footer-contact-col-main">
<h5 data-aos-duration="650" data-aos="fade-left" class="footer-title">Contact Us</h5>
<div class="footer-contact-row d-flex justify-content-center">
<div data-aos-duration="650" data-aos="fade-right"
class="footer-contact-col d-flex flex-column gap-3 w-100"
>
<a
href="https://github.com/opensource-society/CodeClip"
target="_blank"
class="btn btn-primary mb-2 footer-contact-btn"
style="max-width: 250px"
>
<i class="fab fa-github me-2"></i> GitHub
</a>
<a
href="https://discord.gg/NmGyBWAE3b"
target="_blank"
class="btn btn-primary mb-2 footer-contact-btn"
style="max-width: 250px"
>
<i class="fab fa-discord me-2"></i> Discord
</a>
</div>
<div data-aos-duration="650" data-aos="fade-left"
class="footer-contact-col d-flex flex-column align-items-center last-two-buttons"
>
<!-- margin added -->
<a
href="https://github.com/opensource-society/CodeClip/issues"
target="_blank"
class="btn btn-primary mb-2 footer-contact-btn"
style="max-width: 250px"
>
<i class="fas fa-exclamation-circle me-2"></i> Open an Issue
</a>
<!-- Added linkdin social connection -->
<a
href="https://www.linkedin.com/in/adityai0"
target="_blank"
class="btn btn-primary mb-2 footer-contact-btn mt-3"
style="max-width: 250px"
>
<i class="fab fa-linkedin-in me-2"></i> LinkedIn
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<hr />
<p data-aos-duration="650" data-aos="fade-up" class="footerNote text-center mb-0">
© CodeClip | Open Source Project 2025
</p>
</div>
</footer>
<!--AOS Animations-->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
duration: 650,
once: true
});
</script>
<!-- ================================ Footer Section End Here ================================ -->
<!--add scroll to top button -->
<a href="#top" class="scroll_to_top" aria-label="Scroll to top"><i class="fas fa-arrow-up"></i></a>
<!-- ================ Vendor JS ================ -->
<script src="scripts/jquery.min.js"></script>
<script src="scripts/owl.carousel.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- ================ Custom JS ================ -->
<script src="scripts/main.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function () {
const loadingScreen = document.getElementById("loading-screen");
const loadingHeading = loadingScreen.querySelector("h2");
const sentences = [
"Loading your experience...",
"Almost ready, please wait..."
];
let index = 0;
loadingHeading.innerHTML = sentences[index]; // show first sentence
// Change sentence every 4 seconds
const textInterval = setInterval(() => {
index = (index + 1) % sentences.length;
loadingHeading.innerHTML = sentences[index];
// inside setInterval
loadingHeading.classList.add("fade-out");
setTimeout(() => {
loadingHeading.innerHTML = sentences[index];
loadingHeading.classList.remove("fade-out");
}, 500);
}, 4000);
// Hide loading screen after 8 seconds
setTimeout(() => {
clearInterval(textInterval);
loadingScreen.classList.add("hidden");
}, 8000);
});
</script>
<script>
// filepath: c:\Users\manog\CodeClip-GSSOC\CodeClip\index.html
// Ensure CSS var matches the actual navbar height (updates on resize)
document.addEventListener('DOMContentLoaded', function () {
const setNavHeight = () => {
const nav = document.querySelector('.navbar.fixed-top, .navbar');
if (nav) {
document.documentElement.style.setProperty('--navbar-height', nav.offsetHeight + 'px');
}
};
setNavHeight();
window.addEventListener('resize', setNavHeight);
});
</script>
</body>
</html>