mingle-website/404.html
68893236+KINDNICK@users.noreply.github.com fa237316df Update: 전체 디자인 개선, 접근성 강화, OG 이미지 변경
- 다크모드 지원 추가 (모든 페이지 CSS)
- 글래스모피즘 카드 스타일 통일
- 하드코딩 컬러 → CSS 변수 전환
- 접근성 개선: skip nav, aria-label, sr-only, role="dialog"
- 파일 구조 정리: 이미지/로고 images/ 폴더로 이동, 미사용 파일 삭제
- 서비스 패키지 8시간 → 6시간으로 변경
- OG 이미지를 전용 mingle-OG.png로 변경
- 컨택트 다크모드 위치 박스 투명 처리

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-31 02:44:19 +09:00

242 lines
8.0 KiB
HTML

<!DOCTYPE html>
<html lang="ko">
<head>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-KZKV535P');</script>
<!-- End Google Tag Manager -->
<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="/images/logo/mingle-logo.ico">
<link rel="shortcut icon" href="/images/logo/mingle-logo.ico">
<link rel="icon" type="image/webp" href="/images/logo/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);
}
/* 다크모드 */
[data-theme="dark"] .error-container {
background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1520 100%);
}
[data-theme="dark"] .error-title {
color: rgba(255, 255, 255, 0.95);
}
[data-theme="dark"] .error-description {
color: rgba(255, 255, 255, 0.65);
}
[data-theme="dark"] .search-input {
background: rgba(255, 255, 255, 0.05);
border-color: var(--glass-border);
color: rgba(255, 255, 255, 0.9);
}
[data-theme="dark"] .search-input::placeholder {
color: rgba(255, 255, 255, 0.35);
}
[data-theme="dark"] .search-input:focus {
border-color: var(--primary-color);
}
[data-theme="dark"] .helpful-links h3 {
color: rgba(255, 255, 255, 0.95);
}
[data-theme="dark"] .helpful-links li {
background: rgba(255, 255, 255, 0.04);
border: 1px solid var(--glass-border);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
[data-theme="dark"] .helpful-links a {
color: var(--primary-color);
}
@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>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KZKV535P"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<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">
<label for="errorSearch" class="sr-only">검색</label>
<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 src="js/common.js"></script>
<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>