Skip to content

Commit 10926e8

Browse files
committed
Enhance hidden delivery page with navigation links and theme switcher; update project description
1 parent 7233e6c commit 10926e8

1 file changed

Lines changed: 18 additions & 2 deletions

File tree

hidden/index.html

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,34 @@
1717
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@500;600;700&family=Press+Start+2P&family=Orbitron:wght@400;500;600;700;800&display=swap"
1818
rel="stylesheet"
1919
/>
20+
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" />
2021
<link rel="stylesheet" href="../assets/css/site.css" data-cache-bust="true" />
2122
</head>
2223
<body>
2324
<canvas id="particle-canvas"></canvas>
2425
<div class="page-shell">
2526
<header class="top-bar">
2627
<a class="brand" href="../index.html">Code Kokeshi</a>
28+
<nav class="nav-links" aria-label="Pages">
29+
<a class="nav-link" href="../gamedev.html">Game Dev</a>
30+
<a class="nav-link" href="../art.html">Art</a>
31+
<a class="nav-link" href="../projects.html">Projects</a>
32+
<a class="nav-link" href="../reviewers.html">Reviewers</a>
33+
<a class="nav-link" href="../thesis_section/index.html">Thesis</a>
34+
</nav>
35+
<div class="theme-switcher" role="group" aria-label="Theme selector">
36+
<span class="theme-label">Theme</span>
37+
<button type="button" class="theme-button" data-theme-option="dark" aria-pressed="false">Dark</button>
38+
<button type="button" class="theme-button" data-theme-option="light" aria-pressed="false">Light</button>
39+
<button type="button" class="theme-button" data-theme-option="wood" aria-pressed="false">Retro</button>
40+
<button type="button" class="theme-button" data-theme-option="cyberpunk" aria-pressed="false">Cyberpunk</button>
41+
</div>
2742
</header>
2843

2944
<main>
3045
<section class="page-section hero-simple">
31-
<h1 class="section-title">Hidden Delivery</h1>
32-
<p class="lead">Dragon's Heart project files for client review.</p>
46+
<h1 class="section-title">Hidden Project Delivery</h1>
47+
<p class="lead">Direct access page for client file download.</p>
3348
</section>
3449

3550
<section class="page-section">
@@ -56,6 +71,7 @@ <h3>Dragon's Heart</h3>
5671
<footer class="site-footer">© <span id="year"></span> CodeKokeshi.</footer>
5772
</div>
5873

74+
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
5975
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/3.2.1/anime.min.js"></script>
6076
<script defer src="../assets/js/animations.js"></script>
6177
<script defer src="../assets/js/site.js"></script>

0 commit comments

Comments
 (0)