-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
31 lines (31 loc) · 2 KB
/
404.html
File metadata and controls
31 lines (31 loc) · 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<script>(function(){var l=localStorage.getItem('cc101-lang')||'ko';document.documentElement.setAttribute('lang',l)})();</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 — Claude Code 101</title>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600&family=Outfit:wght@600;800&display=swap" rel="stylesheet">
<style>
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Outfit',sans-serif;background:#06090f;color:#e2e8f0;min-height:100vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:2rem}
.wrap{max-width:480px}
.code{font-family:'JetBrains Mono',monospace;font-size:8rem;font-weight:800;line-height:1;background:linear-gradient(135deg,#f97316,#38bdf8);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-bottom:.5rem}
h1{font-size:1.5rem;font-weight:600;margin-bottom:1rem;color:#94a3b8}
p{color:#64748b;margin-bottom:2rem;font-size:.95rem}
a{display:inline-flex;align-items:center;gap:8px;padding:10px 24px;background:rgba(249,115,22,.12);border:1px solid rgba(249,115,22,.25);border-radius:100px;color:#f97316;text-decoration:none;font-family:'JetBrains Mono',monospace;font-size:.88rem;transition:all .3s}
a:hover{background:rgba(249,115,22,.2);transform:translateY(-1px)}
html[lang="ko"] .lang-en{display:none}
html[lang="en"] .lang-ko{display:none}
</style>
</head>
<body>
<div class="wrap">
<div class="code">404</div>
<h1><span class="lang-ko">페이지를 찾을 수 없습니다</span><span class="lang-en">Page Not Found</span></h1>
<p><span class="lang-ko">요청하신 페이지가 존재하지 않거나 이동되었습니다.</span><span class="lang-en">The page you requested doesn't exist or has been moved.</span></p>
<a href="./"><span class="lang-ko">← 학습 페이지로 돌아가기</span><span class="lang-en">← Back to Learning</span></a>
</div>
<script src="lang.js"></script>
</body>
</html>