-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
445 lines (403 loc) · 17.7 KB
/
team.html
File metadata and controls
445 lines (403 loc) · 17.7 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Team Honest House - Bracket 개발팀 소개">
<title>Team Honest House | Bracket</title>
<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;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
/* --- Core Variables (Synced with index.html) --- */
:root {
--color-bg: #000000;
--color-bg-card: #1A1A1A;
/* 메인 컬러 변경: #E6FF00 -> #E6FF79 */
--color-primary: #E6FF79;
--color-primary-hover: #dbe660;
--color-text-main: #FFFFFF;
--color-text-sub: #A1A1A1;
--font-main: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
--transition: all 0.3s ease;
--container-width: 1200px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background-color: var(--color-bg);
color: var(--color-text-main);
font-family: var(--font-main);
line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container {
width: 90%;
max-width: var(--container-width);
margin: 0 auto;
padding: 0 20px;
}
/* --- Header Styles (Exact match with Index) --- */
header {
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
background: rgba(0, 0, 0, 0.85);
backdrop-filter: blur(12px);
padding: 16px 0; /* Index와 동일 */
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
/* 로고 스타일 통일 */
.logo {
font-size: 1.4rem;
font-weight: 800;
color: var(--color-text-main);
display: flex;
align-items: center;
gap: 10px;
}
.logo img {
width: 32px;
height: 32px;
object-fit: contain;
}
/* 우측 액션 그룹 */
.nav-actions { display: flex; align-items: center; gap: 20px; }
/* TEAM 링크 스타일 통일 */
.nav-link-team {
font-weight: 700;
font-size: 1rem;
color: var(--color-primary); /* 현재 페이지 표시를 위해 색상 유지 */
text-transform: uppercase;
letter-spacing: 0.5px;
transition: color 0.3s;
}
.nav-link-history {
font-weight: 700;
font-size: 1rem;
color: var(--color-text-main); /* 현재 페이지 표시를 위해 색상 유지 */
text-transform: uppercase;
letter-spacing: 0.5px;
transition: color 0.3s;
}
/* [버튼 스타일 통일] - index.html과 동일하게 설정 */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 8px 16px; /* 사이즈 축소 */
font-size: 0.85rem; /* 폰트 축소 */
font-weight: 700;
border-radius: 10px; /* 라운드 조정 */
cursor: pointer;
transition: var(--transition);
gap: 6px;
white-space: nowrap;
}
.btn-primary {
background-color: var(--color-primary);
color: #000;
border: 2px solid var(--color-primary);
}
.btn-primary:hover {
background-color: var(--color-primary-hover);
border-color: var(--color-primary-hover);
transform: translateY(-2px);
}
@media (max-width: 480px) {
.nav-actions { gap: 15px; }
/* 모바일 버튼 스타일 통일 */
.btn { padding: 8px 16px; font-size: 0.85rem; }
.logo span { display: none; }
}
/* --- Team Page Specific Styles --- */
.team-hero {
padding-top: 140px;
padding-bottom: 60px;
text-align: center;
background: radial-gradient(circle at 50% 30%, #1a1a1a 0%, #000000 70%);
}
.team-hero h1 {
font-size: 3rem;
font-weight: 800;
margin-bottom: 16px;
}
.team-hero p {
color: var(--color-text-sub);
font-size: 1.1rem;
max-width: 600px;
margin: 0 auto;
}
/* Member Grid Layout */
.team-grid-section {
padding-bottom: 120px;
background: linear-gradient(180deg, #000000 0%, #111111 100%);
}
.team-grid {
display: grid;
/* 기본적으로 3열 배치 (3명씩 한 줄) */
grid-template-columns: repeat(3, 1fr);
gap: 40px;
margin-top: 40px;
}
/* Member Card Design */
.member-card {
background: transparent;
text-align: center;
padding: 20px;
border-radius: 20px;
transition: var(--transition);
}
.member-img-container {
width: 180px;
height: 180px;
margin: 0 auto 24px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.member-img-placeholder {
width: 100%;
height: 100%;
background-color: #222;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 4rem;
color: #444;
position: relative;
z-index: 1;
box-shadow: 0 10px 20px -5px rgba(230, 255, 0, 0.3),
inset 0 -4px 0 0px var(--color-primary);
overflow: hidden;
}
.member-img-placeholder img {
width: 100%;
height: 100%;
object-fit: cover;
}
.member-info h3 {
font-size: 1.4rem;
font-weight: 700;
margin-bottom: 4px;
color: #fff;
}
.member-role {
color: var(--color-primary);
font-size: 0.9rem;
font-weight: 600;
letter-spacing: 1px;
margin-bottom: 16px;
display: block;
}
.member-desc {
color: var(--color-text-sub);
font-size: 0.95rem;
line-height: 1.5;
margin-bottom: 20px;
min-height: 3em;
}
.member-link a {
display: inline-flex;
align-items: center;
gap: 8px;
color: #fff;
font-size: 0.9rem;
padding: 8px 16px;
border: 1px solid #333;
border-radius: 20px;
transition: var(--transition);
}
.member-link a:hover {
border-color: var(--color-primary);
color: var(--color-primary);
background: rgba(230, 255, 0, 0.05);
}
@media (max-width: 1024px) {
.team-grid { gap: 20px; }
}
@media (max-width: 768px) {
.team-hero h1 { font-size: 2.2rem; }
.team-grid { grid-template-columns: 1fr; gap: 60px; }
.member-card { padding: 0; }
}
/* Animation */
.fade-up {
opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
/* Footer */
footer { padding: 60px 0; border-top: 1px solid #222; font-size: 0.9rem; color: #666; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: var(--color-primary); }
.team-info { font-size: 0.8rem; margin-top: 16px; color: #444; }
</style>
</head>
<body>
<header>
<div class="container nav-container">
<a href="index.html" class="logo">
<!-- [이미지 위치] 로고 아이콘 -->
<img src="assets/BracketLogo.png" alt="Bracket App Icon">
<span>Bracket</span>
</a>
<div class="nav-actions">
<a href="https://slime-shirt-140.notion.site/Bracket-2b002aff8b52809d81b7c6abf119eca3" class="nav-link-history">History</a>
<a href="team.html" class="nav-link-team">TEAM</a>
<a href="https://apps.apple.com/kr/app/bracket-%EB%AF%B8%EB%9F%AC%EB%A6%AC%EC%8A%A4-%EC%B9%B4%EB%A9%94%EB%9D%BC-%EC%B4%AC%EC%98%81-%EB%B3%B4%EC%A1%B0-%EC%95%B1/id6755022196" class="btn btn-primary" target="_blank">다운로드</a>
</div>
</div>
</header>
<section class="team-hero fade-up">
<div class="container">
<h1>Team Honest House</h1>
<p>애플 디벨로퍼 아카데미에서 만난 가장 떳떳한 사람들</p>
</div>
</section>
<section class="team-grid-section fade-up">
<div class="container">
<div class="team-grid">
<!-- Member 1: Sandeul -->
<div class="member-card">
<div class="member-img-container">
<div class="member-img-placeholder">
<!-- [이미지 위치] 팀원 1 미모지 (Sandeul) -->
<img src="assets/sandeul.png" alt="Sandeul">
</div>
</div>
<div class="member-info">
<h3>양희준 Sandeul</h3>
<span class="member-role">Project Manager</span>
<p class="member-desc">프로젝트 일정 관리 및 핵심 의사결정 리딩과<br>아카데미와의 Connector 역할 수행</p>
<div class="member-link">
<a href="https://slime-shirt-140.notion.site/2a702aff8b528052b8d3ee59d937094f?source=copy_link" target="_blank"><i class="fa-solid fa-file-lines"></i> Notion</a>
<a href="https://www.linkedin.com/in/희준-양-444871256/" target="_blank"><i class="fa-brands fa-linkedin"></i> Profile</a>
</div>
</div>
</div>
<!-- Member 2: Hari -->
<div class="member-card">
<div class="member-img-container">
<div class="member-img-placeholder">
<!-- [이미지 위치] 팀원 2 미모지 (Hari) -->
<img src="assets/hari.png" alt="Hari">
</div>
</div>
<div class="member-info">
<h3>윤하정 Hari</h3>
<span class="member-role">Designer</span>
<p class="member-desc">카메라 다이얼을 재해석한 UI 구현으로<br>UX를 극대화한 디자인 구현</p>
<div class="member-link">
<a href="https://www.behance.net/yhj17bb5265/projects" target="_blank"><i class="fa-brands fa-behance" aria-hidden="true"></i> Behance</a>
<a href="www.linkedin.com/in/하정-윤-6b77b1380" target="_blank"><i class="fa-brands fa-linkedin"></i> Profile</a>
</div>
</div>
</div>
<!-- Member 3: Soop -->
<div class="member-card">
<div class="member-img-container">
<div class="member-img-placeholder">
<!-- [이미지 위치] 팀원 3 미모지 (Soop) -->
<img src="assets/soop.png" alt="Soop">
</div>
</div>
<div class="member-info">
<h3>한수빈 Soop</h3>
<span class="member-role">iOS Developer</span>
<p class="member-desc">CCAPI 초기 세팅 및<br>휠 피커 UI 구현</p>
<div class="member-link">
<a href="https://github.com/realhsb" target="_blank"><i class="fa-brands fa-github"></i> Github</a>
<a href="https://kr.linkedin.com/in/subeen-han-4773151a3" target="_blank"><i class="fa-brands fa-linkedin"></i> Profile</a>
</div>
</div>
</div>
<!-- Member 4: Rama -->
<div class="member-card">
<div class="member-img-container">
<div class="member-img-placeholder">
<!-- [이미지 위치] 팀원 4 미모지 (Rama) -->
<img src="assets/rama.png" alt="Rama">
</div>
</div>
<div class="member-info">
<h3>문형근 Rama</h3>
<span class="member-role">iOS Developer</span>
<p class="member-desc">Canon Camera Live View 구현 및<br>Core Bluetooth 카메라 페어링 구현</p>
<div class="member-link">
<a href="https://github.com/Rama-Moon" target="_blank"><i class="fa-brands fa-github"></i> Github</a>
<a href="www.linkedin.com/in/hyeonggeun-moon-822b37277" target="_blank"><i class="fa-brands fa-linkedin"></i> Profile</a>
</div>
</div>
</div>
<!-- Member 5: Minbol -->
<div class="member-card">
<div class="member-img-container">
<div class="member-img-placeholder">
<!-- [이미지 위치] 팀원 5 미모지 (Minbol) -->
<img src="assets/minbol.png" alt="Minbol">
</div>
</div>
<div class="member-info">
<h3>이보민 Minbol</h3>
<span class="member-role">iOS Developer</span>
<p class="member-desc">CCAPI 기반 Trishot 멀티프리셋 촬영 기능 구현 및<br>Preset 실시간 카메라 동기화 구현</p>
<div class="member-link">
<a href="https://github.com/bome24" target="_blank"><i class="fa-brands fa-github"></i> Github</a>
<a href="https://www.linkedin.com/in/bomin-lee-a357b729a" target="_blank"><i class="fa-brands fa-linkedin"></i> Profile</a>
</div>
</div>
</div>
<!-- Member 6: Ivy -->
<div class="member-card">
<div class="member-img-container">
<div class="member-img-placeholder">
<!-- [이미지 위치] 팀원 6 미모지 (Ivy) -->
<img src="assets/ivy.png" alt="Ivy">
</div>
</div>
<div class="member-info">
<h3>이현주 Ivy</h3>
<span class="member-role">iOS Developer</span>
<p class="member-desc">CCAPI 기반 사진 무선 다운로드 최적화 및<br>이미지 유사도 분석 기반 AI 그룹화 시스템 구현</p>
<div class="member-link">
<a href="https://github.com/dlguszoo" target="_blank"><i class="fa-brands fa-github"></i> Github</a>
<a href="www.linkedin.com/in/현주-이-08020935a" target="_blank"><i class="fa-brands fa-linkedin"></i> Profile</a>
</div>
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="footer-content">
<div class="logo" style="color: #666; gap: 8px;">
<!-- [이미지 위치] 푸터 로고 아이콘 -->
<img src="assets/BracketLogo.png" style="width:24px; height:24px; object-fit: contain;" alt="icon"> Bracket
</div>
<div class="footer-links">
<a href="https://github.com/DeveloperAcademy-POSTECH/2025-C6-A6-Bracket">GitHub</a>
<a href="https://slime-shirt-140.notion.site/Bracket-2b002aff8b52809d81b7c6abf119eca3">Notion</a>
</div>
</div>
<div style="border-top: 1px solid #333; padding-top: 20px; display: flex; flex-direction: column; gap: 10px;">
<p style="font-size: 0.75rem; color: #444;">Contact: honesthouse2025@gmail.com</p>
</div>
</div>
</footer>
<script>
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) entry.target.classList.add('visible');
});
});
document.querySelectorAll('.fade-up').forEach(el => observer.observe(el));
</script>
</body>
</html>