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
16 changes: 8 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@
<nav class="header__nav" id="navMenu">
<ul class="nav__list">
<li><a href="/" data-route="/" class="nav__link">Home</a></li>
<li><a href="/challenges" data-route="/challenges" class="nav__link active">Challenges</a></li>
<li><a href="editor.html" data-route="/editor" class="nav__link">Editor</a></li>
<li><a href="/profile" data-route="/profile" class="nav__link">Profile</a></li>
<li><a href="about.html" class="nav__link">About</a></li>
<li><a href="pages/challenges.html" data-route="/challenges" class="nav__link active">Challenges</a></li>
<li><a href="pages/editor.html" data-route="/editor" class="nav__link">Editor</a></li>
<li><a href="pages/profile.html" data-route="/profile" class="nav__link">Profile</a></li>
<li><a href="/about" data-route="/about" class="nav__link">About</a></li>
</ul>
</nav>
<button class="header__toggle" id="navToggle" aria-label="Open navigation menu">
Expand Down Expand Up @@ -66,7 +66,7 @@ <h1 class="hero__title">
</p>
<div class="hero__cta">
<a href="/coding" class="btn btn-primary">🎯 Start Coding</a>
<a href="/challenges" class="btn btn-secondary">📚 View Challenges</a>
<a href="pages/challenges.html" class="btn btn-secondary">📚 View Challenges</a>
</div>
</div>
<div class="hero__visual">
Expand Down Expand Up @@ -109,14 +109,14 @@ <h4>CodeClip</h4>
<h4>Quick Links</h4>
<ul>
<li><a href="/" data-route="/">Home</a></li>
<li><a href="/challenges" data-route="/challenges">Challenges</a></li>
<li><a href="/editor" data-route="/editor">Editor</a></li>
<li><a href="pages/challenges.html" data-route="/challenges">Challenges</a></li>
<li><a href="pages/editor.html" data-route="/editor">Editor</a></li>
</ul>
</div>
<div class="footer__section">
<h4>Community</h4>
<ul>
<li><a href="#">GitHub</a></li>
<li><a href="https://github.com/opensource-society/CodeClip">GitHub</a></li>
<li><a href="#">Discord</a></li>
<li><a href="#">Twitter</a></li>
</ul>
Expand Down
4 changes: 2 additions & 2 deletions pages/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ <h4>CodeClip</h4>
<h4>Quick Links</h4>
<ul>
<li><a href="/" data-route="/">Home</a></li>
<li><a href="/challenges" data-route="/challenges">Challenges</a></li>
<li><a href="/editor" data-route="/editor">Editor</a></li>
<li><a href="challenges.html" data-route="/challenges">Challenges</a></li>
<li><a href="editor.html" data-route="/editor">Editor</a></li>
</ul>
</div>
<div class="footer__section">
Expand Down
18 changes: 9 additions & 9 deletions pages/challenges.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
<nav class="header__nav" id="navMenu">
<ul class="nav__list">
<li><a href="/" data-route="/" class="nav__link">Home</a></li>
<li><a href="./challenges.html" data-route="/challenges" class="nav__link active">Challenges</a></li>
<li><a href="./editor.html" data-route="/editor" class="nav__link">Editor</a></li>
<li><a href="./profile.html" data-route="/profile" class="nav__link">Profile</a></li>
<li><a href="challenges.html" data-route="/challenges" class="nav__link active">Challenges</a></li>
<li><a href="editor.html" data-route="/editor" class="nav__link">Editor</a></li>
<li><a href="profile.html" data-route="/profile" class="nav__link">Profile</a></li>
</ul>
</nav>
<button class="header__toggle" id="navToggle" aria-label="Open navigation menu">
Expand Down Expand Up @@ -109,7 +109,7 @@ <h3 class="challenge-card__title">Two Sum</h3>
<span class="category-tag">Hash Table</span>
</div>
<div class="challenge-card__actions">
<a href="/editor" data-route="/editor" class="btn btn-primary btn-sm">Solve Challenge</a>
<a href="editor.html" data-route="/editor" class="btn btn-primary btn-sm">Solve Challenge</a>
</div>
</div>

Expand All @@ -126,7 +126,7 @@ <h3 class="challenge-card__title">Longest Palindromic Substring</h3>
<span class="category-tag">Dynamic Programming</span>
</div>
<div class="challenge-card__actions">
<a href="/editor" data-route="/editor" class="btn btn-primary btn-sm">Solve Challenge</a>
<a href="editor.html" data-route="/editor" class="btn btn-primary btn-sm">Solve Challenge</a>
</div>
</div>

Expand All @@ -143,7 +143,7 @@ <h3 class="challenge-card__title">Merge K Sorted Lists</h3>
<span class="category-tag">Divide and Conquer</span>
</div>
<div class="challenge-card__actions">
<a href="/editor" data-route="/editor" class="btn btn-primary btn-sm">Solve Challenge</a>
<a href="editor.html" data-route="/editor" class="btn btn-primary btn-sm">Solve Challenge</a>
</div>
</div>

Expand All @@ -160,7 +160,7 @@ <h3 class="challenge-card__title">Valid Parentheses</h3>
<span class="category-tag">Strings</span>
</div>
<div class="challenge-card__actions">
<a href="/editor" data-route="/editor" class="btn btn-primary btn-sm">Solve Challenge</a>
<a href="editor.html" data-route="/editor" class="btn btn-primary btn-sm">Solve Challenge</a>
</div>
</div>
</div>
Expand All @@ -184,8 +184,8 @@ <h4>CodeClip</h4>
<h4>Quick Links</h4>
<ul>
<li><a href="/" data-route="/">Home</a></li>
<li><a href="/challenges" data-route="/challenges">Challenges</a></li>
<li><a href="/editor" data-route="/editor">Editor</a></li>
<li><a href="challenges.html" data-route="/challenges">Challenges</a></li>
<li><a href="editor.html" data-route="/editor">Editor</a></li>
</ul>
</div>
<div class="footer__section">
Expand Down
4 changes: 2 additions & 2 deletions pages/editor.html
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@
<div style="font-size: 1.5rem; font-weight: 700; color: #4FC3F7;">CodeClip</div>
<nav style="display: flex; gap: 1.5rem;">
<a href="/" data-route="/" style="color: #f8f9fa; text-decoration: none; padding: 0.5rem 1rem; border-radius: 0.5rem; transition: background 0.2s;">Home</a>
<a href="./challenges.html" data-route="/challenges" style="color: #f8f9fa; text-decoration: none; padding: 0.5rem 1rem; border-radius: 0.5rem; transition: background 0.2s;">Challenges</a>
<a href="./editor.html" data-route="/editor" style="color: #4FC3F7; text-decoration: none; padding: 0.5rem 1rem; border-radius: 0.5rem; background: rgba(79, 195, 247, 0.1);">Editor</a>
<a href="challenges.html" data-route="/challenges" style="color: #f8f9fa; text-decoration: none; padding: 0.5rem 1rem; border-radius: 0.5rem; transition: background 0.2s;">Challenges</a>
<a href="editor.html" data-route="/editor" style="color: #4FC3F7; text-decoration: none; padding: 0.5rem 1rem; border-radius: 0.5rem; background: rgba(79, 195, 247, 0.1);">Editor</a>
<a href="profile.html" data-route="/profile" style="color: #f8f9fa; text-decoration: none; padding: 0.5rem 1rem; border-radius: 0.5rem; transition: background 0.2s;">Profile</a>
</nav>
</div>
Expand Down
10 changes: 5 additions & 5 deletions pages/profile.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
<nav class="header__nav" id="navMenu">
<ul class="nav__list">
<li><a href="/" data-route="/" class="nav__link">Home</a></li>
<li><a href="./challenges.html" data-route="/challenges" class="nav__link">Challenges</a></li>
<li><a href="./editor.html" data-route="/editor" class="nav__link">Editor</a></li>
<li><a href="./profile.html" data-route="/profile" class="nav__link active">Profile</a></li>
<li><a href="challenges.html" data-route="/challenges" class="nav__link">Challenges</a></li>
<li><a href="editor.html" data-route="/editor" class="nav__link">Editor</a></li>
<li><a href="profile.html" data-route="/profile" class="nav__link active">Profile</a></li>
</ul>
</nav>
<button class="header__toggle" id="navToggle" aria-label="Open navigation menu">
Expand Down Expand Up @@ -214,8 +214,8 @@ <h4>CodeClip</h4>
<h4>Quick Links</h4>
<ul>
<li><a href="/" data-route="/">Home</a></li>
<li><a href="/challenges" data-route="/challenges">Challenges</a></li>
<li><a href="/editor" data-route="/editor">Editor</a></li>
<li><a href="challenges.html" data-route="/challenges">Challenges</a></li>
<li><a href="editor.html" data-route="/editor">Editor</a></li>
</ul>
</div>
<div class="footer__section">
Expand Down
Loading