-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (70 loc) · 3.42 KB
/
Copy pathindex.html
File metadata and controls
81 lines (70 loc) · 3.42 KB
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
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EAT-SSU | 숭실대학교 개발팀</title>
<meta name="description" content="EAT-SSU 개발팀의 팀 블로그 및 유튜브 채널입니다. 지식을 공유하고 함께 성장합니다.">
<link rel="stylesheet" href="./styles/main.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<!-- Using Tossface (or similar emoji font) if available, otherwise fallback to system emoji -->
</head>
<body>
<div class="background-mesh"></div>
<main class="container">
<section class="hero" id="hero">
<div class="hero-content">
<span class="badge fade-in">Team Blog</span>
<h1 class="fade-in delay-1">함께 성장하는<br><span class="brand"><span class="brand-e">E</span>AT-SSU</span>
개발팀</h1>
<p class="fade-in delay-2">기술과 경험을 나누며 더 나은 서비스를 만들어갑니다.</p>
</div>
<div class="hero-image fade-in delay-2">
<img src="./image.svg" alt="EAT-SSU Team">
</div>
<div class="scroll-indicator fade-in delay-3">
<span>SCROLL</span>
<div class="arrow">↓</div>
</div>
</section>
<section class="links-section" id="media">
<div class="section-header scroll-reveal">
<span class="section-category">Media</span>
<h2 class="section-title"><span class="brand"><span class="brand-e">E</span>AT-SSU</span> On Air</h2>
</div>
<div class="cards-grid" id="media-container">
<!-- Content loaded via data-loader.js -->
</div>
</section>
<section class="links-section" id="blog">
<div class="section-header scroll-reveal">
<span class="section-category">Tech Blog</span>
<h2 class="section-title">우리의 치열한 고민들</h2>
</div>
<div class="cards-grid" id="blog-container">
<!-- Content loaded via data-loader.js -->
</div>
</section>
<section class="cta-section scroll-reveal" id="join">
<div class="cta-card">
<div class="cta-copy">
<span class="cta-eyebrow">Join Us</span>
<h2 class="cta-title">EAT-SSU와 함께 만들어요</h2>
<p class="cta-desc">지원 안내와 진행 방식은 노션에서 확인할 수 있어요.</p>
</div>
<a class="ds-btn ds-btn--primary" href="https://eat-ssu.notion.site/1d2eeef75a1681ae800cf6ffa6faa37d" target="_blank" rel="noopener noreferrer">합류 하러 가기</a>
</div>
</section>
<footer class="footer">
<p>© 2023 EAT-SSU Team. All rights reserved.</p>
<div class="social-links">
<a href="https://github.com/eat-ssu" target="_blank">GitHub</a>
</div>
</footer>
</main>
<script src="./scripts/main.js"></script>
<script src="./scripts/data-loader.js"></script>
</body>
</html>