-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
126 lines (124 loc) · 3.3 KB
/
index.html
File metadata and controls
126 lines (124 loc) · 3.3 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TRIX - ADHD 집중 플래너</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: #0D0D0F;
color: #E8E8ED;
line-height: 1.7;
}
.container {
max-width: 640px;
margin: 0 auto;
padding: 60px 24px;
}
.logo {
font-size: 48px;
font-weight: 900;
letter-spacing: 4px;
color: #fff;
text-align: center;
margin-bottom: 8px;
}
.logo span { color: #6C5CE7; }
.tagline {
text-align: center;
color: #8E8E93;
font-size: 16px;
margin-bottom: 48px;
}
.features {
display: grid;
gap: 20px;
margin-bottom: 48px;
}
.feature {
background: #1C1C1E;
border-radius: 16px;
padding: 24px;
border: 1px solid #2C2C2E;
}
.feature h3 {
font-size: 17px;
font-weight: 700;
margin-bottom: 6px;
color: #fff;
}
.feature h3 .icon { margin-right: 8px; }
.feature p {
font-size: 14px;
color: #8E8E93;
}
.cta {
text-align: center;
margin: 48px 0;
}
.cta a {
display: inline-block;
background: #6C5CE7;
color: #fff;
text-decoration: none;
padding: 14px 36px;
border-radius: 12px;
font-weight: 700;
font-size: 16px;
}
.footer {
text-align: center;
padding-top: 32px;
border-top: 1px solid #2C2C2E;
font-size: 13px;
color: #636366;
}
.footer a {
color: #8E8E93;
text-decoration: none;
margin: 0 12px;
}
.footer a:hover { color: #6C5CE7; }
.contact {
text-align: center;
margin-top: 16px;
font-size: 13px;
color: #636366;
}
.contact a { color: #6C5CE7; text-decoration: none; }
</style>
</head>
<body>
<div class="container">
<div class="logo">T<span>R</span>IX</div>
<p class="tagline">ADHD를 위한 집중 플래너</p>
<div class="features">
<div class="feature">
<h3><span class="icon">🧠</span> 브레인 덤프</h3>
<p>머릿속 할일을 빠르게 수집하세요. 정리는 나중에, 수집이 먼저입니다.</p>
</div>
<div class="feature">
<h3><span class="icon">👆</span> 스와이프 분류</h3>
<p>좌우 스와이프로 아이젠하워 매트릭스 4사분면에 직관적으로 분류합니다.</p>
</div>
<div class="feature">
<h3><span class="icon">📊</span> 매트릭스 뷰</h3>
<p>중요도 × 긴급도 2x2 매트릭스에서 우선순위를 한눈에 확인하세요.</p>
</div>
<div class="feature">
<h3><span class="icon">🎯</span> Big3 + 집중 모드</h3>
<p>오늘 꼭 해야 할 3가지를 선택하고 뽀모도로 타이머로 몰입하세요.</p>
</div>
</div>
<div class="footer">
<a href="privacy.html">개인정보 처리방침</a>
<a href="support.html">고객 지원</a>
</div>
<div class="contact">
<p>© 2026 TRIX · <a href="mailto:wykim777@naver.com">wykim777@naver.com</a></p>
</div>
</div>
</body>
</html>