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>