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> |