-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (73 loc) Β· 2.84 KB
/
index.html
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" />
<title>μμ - AI λ¬Έμ λΆμ μλΉμ€</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/animations.css" />
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="landing-container">
<nav class="app-nav">
<!-- nav-bar ν΄λμ€λ₯Ό app-navλ‘ λ³κ²½ -->
<div class="logo">
<img src="assets/logo.svg" alt="μμ λ‘κ³ " class="animate-fade-in" />
<span class="animate-slide-up">μμ</span>
</div>
<a href="/html/login.html" class="login-btn animate-fade-in"
>μμνκΈ°</a
>
</nav>
<main class="hero-section">
<h1 class="animate-slide-up">
AIκ° λΆμνλ<br />
μ€λ§νΈ λ¬Έμ λΆμ μλΉμ€
</h1>
<p class="animate-fade-in-delay feature-text">
π± PDF λ¬Έμλ₯Ό μ
λ‘λνλ©΄ AIκ° μλμΌλ‘ λΆμνκ³ μμ½ν΄λ립λλ€<br />
π‘ κΆκΈν μ μ΄ μλ€λ©΄ μ€μκ°μΌλ‘ μ§λ¬Έν μ μμ΅λλ€<br />
π λ¬Έμμ ν΅μ¬ λ΄μ©μ μ½κ² νμ
ν μ μμ΅λλ€<br />
β‘οΈ λΉ λ₯΄κ³ μ νν λΆμμΌλ‘ μκ°μ μ μ½νμΈμ
</p>
<div class="cta-buttons animate-fade-in-delay">
<a href="/html/login.html" class="btn primary">무λ£λ‘ μμνκΈ°</a>
<a href="#features" class="btn secondary">μμΈν μμ보기</a>
</div>
</main>
<section id="features" class="features-section">
<h2 class="animate-slide-up">μ£Όμ κΈ°λ₯</h2>
<div class="features-grid">
<div class="feature-card animate-fade-in">
<h3>π€ AI λ¬Έμ λΆμ</h3>
<p>PDF λ¬Έμμ ν΅μ¬ λ΄μ©μ μλμΌλ‘ λΆμνκ³ μμ½ν©λλ€</p>
</div>
<div class="feature-card animate-fade-in">
<h3>π¬ μ€μκ° μ§μμλ΅</h3>
<p>λ¬Έμ λ΄μ©μ λν΄ κΆκΈν μ μ μ€μκ°μΌλ‘ λ¬Όμ΄λ³΄μΈμ</p>
</div>
<div class="feature-card animate-fade-in">
<h3>π μμ ν 보μ</h3>
<p>Google κ³μ μΌλ‘ μμ νκ² λ‘κ·ΈμΈνκ³ μ΄μ©νμΈμ</p>
</div>
</div>
</section>
</div>
<script src="js/animations.js"></script>
<footer class="footer">
<div class="footer-content">
<p>Β© 2024 μμ (Seoseok). All rights reserved.</p>
<p>
Made with β€οΈ by
<a href="https://github.com/seojin-dev" target="_blank"
>Seojin Kim (κΉμμ§)</a
>
</p>
</div>
</footer>
</body>
</html>