forked from GreenSheep01201/claw-empire
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslide-04.html
More file actions
76 lines (75 loc) · 4.04 KB
/
Copy pathslide-04.html
File metadata and controls
76 lines (75 loc) · 4.04 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
width: 960pt;
height: 540pt;
font-family: 'Pretendard', sans-serif;
background: #0f0f0f;
padding: 48pt 56pt;
display: flex;
flex-direction: column;
}
</style>
</head>
<body>
<!-- Header -->
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 28pt;">
<div style="display: flex; align-items: center; gap: 12pt;">
<div style="background: #FF6347; border-radius: 4pt; padding: 4pt 10pt;">
<p style="font-size: 9pt; font-weight: 600; color: #ffffff;">02</p>
</div>
<h2 style="font-size: 28pt; font-weight: 600; color: #ffffff;">6 Departments</h2>
</div>
<p style="font-size: 10pt; color: #666666;">04</p>
</div>
<!-- 6 Department Cards -->
<div style="flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); gap: 16pt;">
<div style="background: #1a1a1a; border-radius: 10pt; padding: 24pt; display: flex; flex-direction: column; justify-content: space-between; border-left: 3pt solid #FF6347;">
<p style="font-size: 40pt; color: #FF6347; font-weight: 700; letter-spacing: -0.02em;">01</p>
<div>
<p style="font-size: 16pt; font-weight: 600; color: #ffffff;">Planning</p>
<p style="font-size: 11pt; color: #888888; margin-top: 4pt;">Strategy & Requirements</p>
</div>
</div>
<div style="background: #1a1a1a; border-radius: 10pt; padding: 24pt; display: flex; flex-direction: column; justify-content: space-between; border-left: 3pt solid #4ECDC4;">
<p style="font-size: 40pt; color: #4ECDC4; font-weight: 700; letter-spacing: -0.02em;">02</p>
<div>
<p style="font-size: 16pt; font-weight: 600; color: #ffffff;">Development</p>
<p style="font-size: 11pt; color: #888888; margin-top: 4pt;">Code Implementation</p>
</div>
</div>
<div style="background: #1a1a1a; border-radius: 10pt; padding: 24pt; display: flex; flex-direction: column; justify-content: space-between; border-left: 3pt solid #45B7D1;">
<p style="font-size: 40pt; color: #45B7D1; font-weight: 700; letter-spacing: -0.02em;">03</p>
<div>
<p style="font-size: 16pt; font-weight: 600; color: #ffffff;">Design</p>
<p style="font-size: 11pt; color: #888888; margin-top: 4pt;">UI/UX & Visual Assets</p>
</div>
</div>
<div style="background: #1a1a1a; border-radius: 10pt; padding: 24pt; display: flex; flex-direction: column; justify-content: space-between; border-left: 3pt solid #F7DC6F;">
<p style="font-size: 40pt; color: #F7DC6F; font-weight: 700; letter-spacing: -0.02em;">04</p>
<div>
<p style="font-size: 16pt; font-weight: 600; color: #ffffff;">QA / QC</p>
<p style="font-size: 11pt; color: #888888; margin-top: 4pt;">Testing & Quality</p>
</div>
</div>
<div style="background: #1a1a1a; border-radius: 10pt; padding: 24pt; display: flex; flex-direction: column; justify-content: space-between; border-left: 3pt solid #BB8FCE;">
<p style="font-size: 40pt; color: #BB8FCE; font-weight: 700; letter-spacing: -0.02em;">05</p>
<div>
<p style="font-size: 16pt; font-weight: 600; color: #ffffff;">DevSecOps</p>
<p style="font-size: 11pt; color: #888888; margin-top: 4pt;">Security & Infrastructure</p>
</div>
</div>
<div style="background: #1a1a1a; border-radius: 10pt; padding: 24pt; display: flex; flex-direction: column; justify-content: space-between; border-left: 3pt solid #E74C3C;">
<p style="font-size: 40pt; color: #E74C3C; font-weight: 700; letter-spacing: -0.02em;">06</p>
<div>
<p style="font-size: 16pt; font-weight: 600; color: #ffffff;">Operations</p>
<p style="font-size: 11pt; color: #888888; margin-top: 4pt;">Deployment & Monitoring</p>
</div>
</div>
</div>
</body>
</html>