-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
52 lines (45 loc) · 1.08 KB
/
404.html
File metadata and controls
52 lines (45 loc) · 1.08 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
---
layout: page
title: "404: Page not found"
permalink: /404.html
---
<div class="error-page">
<h1>404</h1>
<h2>Page not found</h2>
<p>죄송합니다. 요청하신 페이지를 찾을 수 없습니다.</p>
<p>The requested page could not be found.</p>
<a href="/" class="home-link">홈으로 돌아가기</a>
</div>
<style>
.error-page {
text-align: center;
padding: 4rem 0;
}
.error-page h1 {
font-size: 6rem;
margin: 0;
color: var(--accent-color);
}
.error-page h2 {
font-size: 2rem;
margin: 1rem 0;
color: var(--text-secondary);
}
.error-page p {
margin: 1rem 0;
color: var(--text-secondary);
}
.home-link {
display: inline-block;
margin-top: 2rem;
padding: 0.8rem 1.5rem;
background-color: var(--accent-color);
color: white !important;
border-radius: 4px;
text-decoration: none;
transition: opacity 0.2s ease;
}
.home-link:hover {
opacity: 0.8;
}
</style>