187 lines
6.0 KiB
HTML
187 lines
6.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>페이지를 찾을 수 없습니다 - 밍글 스튜디오</title>
|
|
|
|
<!-- 파비콘 -->
|
|
<link rel="icon" type="image/x-icon" href="/mingle-logo.ico">
|
|
<link rel="shortcut icon" href="/mingle-logo.ico">
|
|
<link rel="icon" type="image/webp" href="/mingle-logo.webp">
|
|
|
|
<!-- 폰트 -->
|
|
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap" rel="stylesheet">
|
|
<link href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css" rel="stylesheet">
|
|
|
|
<!-- CSS -->
|
|
<link rel="stylesheet" href="css/common.css">
|
|
|
|
<style>
|
|
.error-container {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
background: linear-gradient(135deg, #f8fafc 0%, #fff7ed 100%);
|
|
padding: var(--spacing-2xl);
|
|
}
|
|
|
|
.error-code {
|
|
font-size: 8rem;
|
|
font-weight: 800;
|
|
background: var(--gradient-main);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
margin-bottom: var(--spacing-lg);
|
|
line-height: 1;
|
|
}
|
|
|
|
.error-title {
|
|
font-size: var(--font-3xl);
|
|
color: var(--text-primary);
|
|
margin-bottom: var(--spacing-md);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.error-description {
|
|
font-size: var(--font-lg);
|
|
color: var(--text-secondary);
|
|
margin-bottom: var(--spacing-2xl);
|
|
max-width: 600px;
|
|
}
|
|
|
|
.error-actions {
|
|
display: flex;
|
|
gap: var(--spacing-md);
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
margin-bottom: var(--spacing-2xl);
|
|
}
|
|
|
|
.search-container {
|
|
margin-top: var(--spacing-xl);
|
|
max-width: 400px;
|
|
width: 100%;
|
|
}
|
|
|
|
.search-input {
|
|
width: 100%;
|
|
padding: var(--spacing-md) var(--spacing-lg);
|
|
border: 2px solid #e5e7eb;
|
|
border-radius: var(--border-radius-full);
|
|
font-size: var(--font-base);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.search-input:focus {
|
|
outline: none;
|
|
border-color: var(--primary-color);
|
|
}
|
|
|
|
.helpful-links {
|
|
margin-top: var(--spacing-2xl);
|
|
text-align: left;
|
|
}
|
|
|
|
.helpful-links h3 {
|
|
color: var(--text-primary);
|
|
margin-bottom: var(--spacing-md);
|
|
font-size: var(--font-xl);
|
|
}
|
|
|
|
.helpful-links ul {
|
|
list-style: none;
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: var(--spacing-md);
|
|
}
|
|
|
|
.helpful-links li {
|
|
background: var(--bg-white);
|
|
padding: var(--spacing-md);
|
|
border-radius: var(--border-radius);
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
|
|
}
|
|
|
|
.helpful-links a {
|
|
color: var(--primary-color);
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--spacing-sm);
|
|
}
|
|
|
|
.helpful-links a:hover {
|
|
color: var(--primary-hover);
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.error-code {
|
|
font-size: 6rem;
|
|
}
|
|
|
|
.error-title {
|
|
font-size: var(--font-2xl);
|
|
}
|
|
|
|
.error-actions {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.helpful-links ul {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="error-container">
|
|
<div class="error-code">404</div>
|
|
<h1 class="error-title">페이지를 찾을 수 없습니다</h1>
|
|
<p class="error-description">
|
|
죄송합니다. 요청하신 페이지가 존재하지 않거나 이동되었을 수 있습니다.<br>
|
|
아래 링크를 통해 원하시는 정보를 찾아보세요.
|
|
</p>
|
|
|
|
<div class="error-actions">
|
|
<a href="index.html" class="btn btn-primary btn-lg">🏠 홈으로 돌아가기</a>
|
|
<a href="contact.html" class="btn btn-outline btn-lg">📞 문의하기</a>
|
|
</div>
|
|
|
|
<div class="search-container">
|
|
<input type="text" class="search-input" placeholder="원하는 내용을 검색해보세요..." id="errorSearch">
|
|
</div>
|
|
|
|
<div class="helpful-links">
|
|
<h3>도움이 될 수 있는 페이지</h3>
|
|
<ul>
|
|
<li><a href="about.html">🏢 회사 소개</a></li>
|
|
<li><a href="services.html">🎬 서비스 안내</a></li>
|
|
<li><a href="portfolio.html">🎯 포트폴리오</a></li>
|
|
<li><a href="gallery.html">📸 스튜디오 갤러리</a></li>
|
|
<li><a href="qna.html">❓ 자주하는 질문</a></li>
|
|
<li><a href="contact.html">📧 연락처 및 위치</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
// 검색 기능
|
|
document.getElementById('errorSearch').addEventListener('keypress', function(e) {
|
|
if (e.key === 'Enter') {
|
|
const query = this.value.trim();
|
|
if (query) {
|
|
// Q&A 페이지로 검색어와 함께 이동
|
|
window.location.href = `qna.html?search=${encodeURIComponent(query)}`;
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |