Skip to content

Commit 93ed5d0

Browse files
committed
index.html 파일 추가: 자동 리디렉션 및 로딩 스피너 포함
1 parent fd8eadb commit 93ed5d0

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

docs/index.html

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<!DOCTYPE html>
2+
<html lang="ko">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<meta http-equiv="refresh" content="0; url=Catalog.xml">
7+
<title>TableCloth Catalog - Redirecting...</title>
8+
<style>
9+
body {
10+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
11+
display: flex;
12+
justify-content: center;
13+
align-items: center;
14+
height: 100vh;
15+
margin: 0;
16+
}
17+
.container {
18+
text-align: center;
19+
}
20+
.spinner {
21+
width: 40px;
22+
height: 40px;
23+
border: 4px solid rgba(255,255,255,0.3);
24+
border-top-color: white;
25+
border-radius: 50%;
26+
animation: spin 1s linear infinite;
27+
margin: 0 auto 20px;
28+
}
29+
@keyframes spin {
30+
to { transform: rotate(360deg); }
31+
}
32+
a {
33+
color: white;
34+
text-decoration: underline;
35+
}
36+
</style>
37+
</head>
38+
<body>
39+
<div class="container">
40+
<div class="spinner"></div>
41+
<p>TableCloth Catalog로 이동 중...</p>
42+
<p><a href="Catalog.xml">자동으로 이동하지 않으면 여기를 클릭하세요</a></p>
43+
</div>
44+
<script>
45+
window.location.href = 'Catalog.xml';
46+
</script>
47+
</body>
48+
</html>

0 commit comments

Comments
 (0)