Skip to content
Open
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
3 changes: 2 additions & 1 deletion pages/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,9 @@
<!-- Header Component -->
<header class="header">
<div class="container header__container">
<!-- Updated logo to clickable -->
<div class="header__logo">
<span class="logo-text">CodeClip</span>
<a href="index.html" class="logo-text">CodeClip</a>
</div>
<nav class="header__nav" id="navMenu">
<ul class="nav__list">
Expand Down
3 changes: 2 additions & 1 deletion pages/editor.html
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@
<div class="container-fluid">
<div style="display: flex; justify-content: space-between; align-items: center;">
<div style="display: flex; align-items: center; gap: 2rem;">
<div style="font-size: 1.5rem; font-weight: 700; color: #4FC3F7;">CodeClip</div>
<!-- clickable logo -->
<a href="/CodeClip" style="font-size: 1.5rem; font-weight: 700; color: #4FC3F7; text-decoration: none;">CodeClip</a>
<nav style="display: flex; gap: 1.5rem;">
<a href="/CodeClip" style="color: #f8f9fa; text-decoration: none; padding: 0.5rem 1rem; border-radius: 0.5rem; transition: background 0.2s;">Home</a>
<a href="/CodeClip/pages/challenges.html" style="color: #f8f9fa; text-decoration: none; padding: 0.5rem 1rem; border-radius: 0.5rem; transition: background 0.2s;">Challenges</a>
Expand Down
7 changes: 4 additions & 3 deletions pages/profile.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@
<!-- Header Component -->
<header class="header">
<div class="container header__container">
<div class="header__logo">
<span class="logo-text">CodeClip</span>
</div>
<!-- clickable logo -->
<div class="header__logo">
<a href="/CodeClip/index.html" class="logo-text" style="text-decoration: none; color: inherit;">CodeClip</a>
</div>
<nav class="header__nav" id="navMenu">
<ul class="nav__list">
<li><a href="/CodeClip/index.html" class="nav__link">Home</a></li>
Expand Down