Spaces:
Sleeping
Sleeping
<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> |