Spaces:
Sleeping
Sleeping
File size: 2,266 Bytes
6575706 |
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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="refresh" content="5"> <!-- 5์ด๋ง๋ค ์๋ก๊ณ ์นจ -->
<title>RAG ๊ฒ์ ์ฑ๋ด - ์ด๊ธฐํ ์ค</title>
<style>
body {
font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
line-height: 1.6;
color: #333;
background-color: #f8f9fa;
text-align: center;
padding-top: 100px;
margin: 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1 {
color: #4a6da7;
margin-bottom: 30px;
}
.loader {
border: 16px solid #f3f3f3;
border-top: 16px solid #4a6da7;
border-radius: 50%;
width: 80px;
height: 80px;
animation: spin 2s linear infinite;
margin: 0 auto 30px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
p {
font-size: 18px;
margin-bottom: 20px;
}
.info {
background-color: #e7f0ff;
border-radius: 8px;
padding: 20px;
margin-top: 30px;
text-align: left;
}
.info h2 {
color: #4a6da7;
margin-top: 0;
}
</style>
</head>
<body>
<div class="container">
<h1>RAG ๊ฒ์ ์ฑ๋ด ์ด๊ธฐํ ์ค...</h1>
<div class="loader"></div>
<p>์ฒซ ์คํ ์ ๋ฐ์ดํฐ ์ค๋น์ ์๊ฐ์ด ์์๋ฉ๋๋ค. ์ ์๋ง ๊ธฐ๋ค๋ ค์ฃผ์ธ์.</p>
<p>ํ์ด์ง๋ 5์ด๋ง๋ค ์๋์ผ๋ก ์๋ก๊ณ ์นจ๋ฉ๋๋ค.</p>
<div class="info">
<h2>์ด๊ธฐํ ์์
</h2>
<ul>
<li>๋ฒกํฐ ์ธ๋ฑ์ค ์์ฑ ์ค...</li>
<li>๋ฌธ์ ์ฒ๋ฆฌ ๋ฐ ์๋ฒ ๋ฉ ์์ฑ ์ค...</li>
<li>๊ฒ์ ์์ง ์ค๋น ์ค...</li>
</ul>
<p>์ด ๊ณผ์ ์ ์ต๋ 1-2๋ถ์ด ์์๋ ์ ์์ต๋๋ค.</p>
</div>
</div>
</body>
</html> |