Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,4 +115,6 @@ codeclip/

CodeClip is released under the **MIT License** – free for personal & commercial use with attribution.

### ⭐ Give the repo a star and join us in building the most accessible coding-challenge vault on the web!
### ⭐ Give the repo a star and join us in building the most accessible coding-challenge vault on the web!

Contribution by Pushpendra Kumar Shah under Girls' Summer of Code 2025.
123 changes: 63 additions & 60 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -473,71 +473,74 @@ <h3 class="secHeader"><span>About</span> CodeClip</h3>
</section>

<!-- ================================ Footer Section Start Here ================================ -->
<footer id="contactFooter">
<div class="container">
<div class="row align-items-start justify-content-between py-4">
<div class="col-12 col-md-3 mb-4 mb-md-0 footer-logo-col">
<a class="navbar-brand mb-2" href="#homeSection"
>Code<span>Clip</span></a
<footer id="contactFooter">
<div class="container">
<div class="row align-items-start justify-content-between py-4">
<div class="col-12 col-md-3 mb-4 mb-md-0 footer-logo-col">
<a class="navbar-brand mb-2" href="#homeSection">Code<span>Clip</span></a>
<p class="footer-desc mb-0">
CodeClip is an open-source project under GirlScript Summer of Code (GSSoC) 2025 open for contribution.
</p>
</div>

<div class="col-12 col-md-3 mb-4 mb-md-0 footer-links-col">
<h5 class="footer-title">Important Links</h5>
<ul class="footer-links list-unstyled mb-0">
<li><a href="#homeSection">Home</a></li>
<li><a href="#challengeSection">Challenges</a></li>
<li><a href="#leaderboardSection">Leaderboard</a></li>
<li><a href="#aboutSection">About</a></li>
</ul>
</div>

<div class="col-12 col-md-6 footer-contact-col-main">
<h5 class="footer-title">Contact Us</h5>
<div class="footer-contact-row row">
<div class="col-12 col-sm-6 d-flex flex-column align-items-center mb-3">
<a
href="https://github.com/opensource-society/CodeClip"
target="_blank"
class="btn btn-primary mb-2 footer-contact-btn"
style="max-width: 250px"
>
<p class="footer-desc mb-0">
CodeClip is a open source project under GirlScript Summer of Code
(GSSoC) 2025 to open for contribution
</p>
</div>
<div class="col-12 col-md-6 mb-4 mb-md-0 footer-links-col">
<h5 class="footer-title">Important Links</h5>
<ul class="footer-links list-unstyled mb-0">
<li><a href="#homeSection">Home</a></li>
<li><a href="#challengeSection">Challenges</a></li>
<li><a href="#leaderboardSection">Leaderboard</a></li>
<li><a href="#aboutSection">About</a></li>
</ul>
<i class="fab fa-github me-2"></i> GitHub
</a>
<a
href="https://discord.gg/your-server-code"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

style: Discord link uses placeholder URL that needs to be updated with actual server invite code

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 class="col-12 col-md-6 footer-contact-col-main">
<h5 class="footer-title">Contact Us</h5>
<div class="footer-contact-row d-flex justify-content-center">
<div
class="footer-contact-col d-flex flex-column align-items-center"
>
<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://github.com/opensource-society/CodeClip"
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
class="footer-contact-col d-flex flex-column align-items-center"
>
<a
href="https://github.com/opensource-society/CodeClip"
target="_blank"
class="btn btn-primary footer-contact-btn"
style="max-width: 250px"
>
<i class="fas fa-exclamation-circle me-2"></i> Open an Issue
</a>
</div>
</div>
<div class="col-12 col-sm-6 d-flex flex-column align-items-center">
<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>
<a
href="mailto:[email protected]"
class="btn btn-primary footer-contact-btn"
style="max-width: 250px"
>
<i class="fas fa-envelope me-2"></i> Email Us
</a>
</div>
</div>
<hr />
<p class="footerNote text-center mb-0">
&copy; CodeClip | Open Source Project 2025
</p>
</div>
</footer>
</div>
<hr />
<p class="footerNote text-center mb-0">
&copy; CodeClip | Open Source Project 2025
</p>
</div>
</footer>

<!-- ================================ Footer Section End Here ================================ -->

<!-- ================ Vendor JS ================ -->
Expand Down
Loading