Skip to content

Commit 7233e6c

Browse files
committed
Add hidden delivery page for Dragon's Heart project files
1 parent 558e970 commit 7233e6c

1 file changed

Lines changed: 66 additions & 0 deletions

File tree

hidden/index.html

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1" />
6+
<title>Hidden | CodeKokeshi</title>
7+
<meta
8+
name="description"
9+
content="Hidden project delivery page for Dragon's Heart visual novel source code and Windows build."
10+
/>
11+
<meta name="author" content="CodeKokeshi" />
12+
<meta name="robots" content="noindex, nofollow" />
13+
<meta name="theme-color" content="#0f1116" />
14+
<link rel="preconnect" href="https://fonts.googleapis.com" />
15+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
16+
<link
17+
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"
18+
rel="stylesheet"
19+
/>
20+
<link rel="stylesheet" href="../assets/css/site.css" data-cache-bust="true" />
21+
</head>
22+
<body>
23+
<canvas id="particle-canvas"></canvas>
24+
<div class="page-shell">
25+
<header class="top-bar">
26+
<a class="brand" href="../index.html">Code Kokeshi</a>
27+
</header>
28+
29+
<main>
30+
<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>
33+
</section>
34+
35+
<section class="page-section">
36+
<h2 class="section-title">Dragon's Heart</h2>
37+
<div class="portfolio-grid no-animations">
38+
<article class="portfolio-card">
39+
<div class="portfolio-card__header">
40+
<h3>Dragon's Heart</h3>
41+
<span class="pill">Visual Novel</span>
42+
</div>
43+
<p>
44+
A visual novel game. Click the links below to download the source code and
45+
Windows build.
46+
</p>
47+
<div class="card-links">
48+
<a href="../assets/hidden/dragons_heart/Source%20Code.zip" download>Source Code</a>
49+
<a href="../assets/hidden/dragons_heart/Windows%20Build.zip" download>Windows Build</a>
50+
</div>
51+
</article>
52+
</div>
53+
</section>
54+
</main>
55+
56+
<footer class="site-footer">© <span id="year"></span> CodeKokeshi.</footer>
57+
</div>
58+
59+
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/3.2.1/anime.min.js"></script>
60+
<script defer src="../assets/js/animations.js"></script>
61+
<script defer src="../assets/js/site.js"></script>
62+
<script>
63+
document.getElementById("year").textContent = new Date().getFullYear();
64+
</script>
65+
</body>
66+
</html>

0 commit comments

Comments
 (0)