openfree commited on
Commit
edfb46b
โ€ข
1 Parent(s): 9c9399e

Upload 2 files

Browse files
Files changed (2) hide show
  1. app.css +376 -0
  2. config.py +228 -0
app.css ADDED
@@ -0,0 +1,376 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Modern color scheme */
2
+ :root {
3
+ /* ์ฃผ์š” ๋ธŒ๋žœ๋“œ ์ปฌ๋Ÿฌ */
4
+ --primary: #0066cc; /* ๋ฉ”์ธ ๋ธŒ๋žœ๋“œ ์ปฌ๋Ÿฌ */
5
+ --secondary: #3385ff; /* ๋ฐ์€ ์•ก์„ผํŠธ */
6
+ --accent: #66a3ff; /* ๋ถ€๋“œ๋Ÿฌ์šด ํฌ์ธํŠธ ์ปฌ๋Ÿฌ */
7
+
8
+ /* ๋ฐฐ๊ฒฝ ์ปฌ๋Ÿฌ */
9
+ --background: #f7f9fc; /* ๋ฉ”์ธ ๋ฐฐ๊ฒฝ */
10
+ --surface: #ffffff; /* ์นด๋“œ ๋ฐฐ๊ฒฝ */
11
+
12
+ /* ํ…์ŠคํŠธ ์ปฌ๋Ÿฌ */
13
+ --text-primary: #2c3e50; /* ์ฃผ์š” ํ…์ŠคํŠธ */
14
+ --text-secondary: #546e7a; /* ๋ถ€๊ฐ€ ํ…์ŠคํŠธ */
15
+ --text-tertiary: #78909c; /* ๋œ ์ค‘์š”ํ•œ ํ…์ŠคํŠธ */
16
+
17
+ /* ๊ธฐ๋Šฅ์„ฑ ์ปฌ๋Ÿฌ */
18
+ --success: #34c759; /* ์„ฑ๊ณต/ํ™•์ธ */
19
+ --warning: #ff9500; /* ๊ฒฝ๊ณ /์ฃผ์˜ */
20
+ --error: #ff3b30; /* ์˜ค๋ฅ˜/์‚ญ์ œ */
21
+
22
+ /* ์ค‘๋ฆฝ ์ปฌ๋Ÿฌ */
23
+ --neutral-100: #f8f9fa;
24
+ --neutral-200: #e9ecef;
25
+ --neutral-300: #dee2e6;
26
+ --neutral-400: #ced4da;
27
+ }
28
+
29
+ body {
30
+ font-family: 'Inter', system-ui, sans-serif;
31
+ background: var(--background);
32
+ color: var(--text-primary);
33
+ line-height: 1.5;
34
+ }
35
+
36
+ .left_header {
37
+ display: flex;
38
+ flex-direction: column;
39
+ justify-content: center;
40
+ align-items: center;
41
+ background: linear-gradient(135deg, var(--surface), var(--neutral-100));
42
+ backdrop-filter: blur(10px);
43
+ border-radius: 24px;
44
+ padding: 2rem;
45
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
46
+ border: 1px solid var(--neutral-200);
47
+ text-align: center;
48
+ margin-bottom: 2rem;
49
+ }
50
+
51
+ .left_header img {
52
+ width: 180px;
53
+ margin-bottom: 1rem;
54
+ border-radius: 12px;
55
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
56
+ }
57
+
58
+ .left_header h1 {
59
+ margin: 0.5rem 0;
60
+ font-weight: 600;
61
+ color: var(--text-primary);
62
+ }
63
+
64
+ .render_header {
65
+ height: 30px;
66
+ width: 100%;
67
+ padding: 5px 16px;
68
+ background-color: var(--neutral-100);
69
+ margin-top: 50px;
70
+ border-radius: 8px 8px 0 0;
71
+ }
72
+
73
+ .header_btn {
74
+ display: inline-block;
75
+ height: 10px;
76
+ width: 10px;
77
+ border-radius: 50%;
78
+ margin-right: 4px;
79
+ }
80
+
81
+ .render_header > .header_btn:nth-child(1) {
82
+ background-color: var(--error);
83
+ }
84
+
85
+ .render_header > .header_btn:nth-child(2) {
86
+ background-color: var(--warning);
87
+ }
88
+
89
+ .render_header > .header_btn:nth-child(3) {
90
+ background-color: var(--success);
91
+ }
92
+
93
+ .right_content {
94
+ height: 920px;
95
+ display: flex;
96
+ flex-direction: column;
97
+ justify-content: center;
98
+ align-items: center;
99
+ background: var(--surface);
100
+ border-radius: 0 0 8px 8px;
101
+ }
102
+
103
+ .history_chatbot button {
104
+ background: none;
105
+ border: none;
106
+ }
107
+
108
+ footer, .footer, div[class*="footer"], #footer {
109
+ display: none !important;
110
+ }
111
+
112
+ #component-0 textarea,
113
+ .gradio-container textarea,
114
+ .ant-input-textarea-large textarea {
115
+ height: 300px !important;
116
+ min-height: 300px !important;
117
+ resize: vertical !important;
118
+ border: 2px solid var(--neutral-200);
119
+ border-radius: 12px;
120
+ transition: all 0.3s;
121
+ background: var(--surface);
122
+ color: var(--text-primary);
123
+ padding: 1rem;
124
+ }
125
+
126
+ #component-0 textarea:focus,
127
+ .gradio-container textarea:focus,
128
+ .ant-input-textarea-large textarea:focus {
129
+ border-color: var(--accent);
130
+ box-shadow: 0 0 0 3px rgba(102, 163, 255, 0.2);
131
+ }
132
+
133
+ .setting-buttons {
134
+ position: sticky;
135
+ top: 1rem;
136
+ right: 0;
137
+ z-index: 1000;
138
+ display: flex;
139
+ gap: 8px;
140
+ padding: 12px;
141
+ background: rgba(255, 255, 255, 0.9);
142
+ backdrop-filter: blur(8px);
143
+ border-radius: 12px;
144
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
145
+ border: 1px solid var(--neutral-200);
146
+ }
147
+
148
+ .right_panel {
149
+ position: relative;
150
+ min-height: 600px;
151
+ padding-top: 50px;
152
+ }
153
+
154
+ .html_content {
155
+ height: 100%;
156
+ border-radius: 12px;
157
+ overflow: hidden;
158
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
159
+ background: var(--surface);
160
+ }
161
+
162
+ .ant-btn {
163
+ flex: 1;
164
+ min-width: 80px;
165
+ border-radius: 8px;
166
+ font-weight: 500;
167
+ transition: all 0.3s;
168
+ height: 40px;
169
+ display: flex;
170
+ align-items: center;
171
+ justify-content: center;
172
+ }
173
+
174
+ .ant-btn-primary {
175
+ background: linear-gradient(to right, var(--primary), var(--secondary));
176
+ border: none;
177
+ color: white;
178
+ }
179
+
180
+ .ant-btn-primary:hover {
181
+ transform: translateY(-2px);
182
+ box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
183
+ }
184
+
185
+ .ant-btn-default {
186
+ background: var(--surface);
187
+ border: 1px solid var(--primary);
188
+ color: var(--primary);
189
+ }
190
+
191
+ .ant-btn-default:hover {
192
+ color: var(--secondary);
193
+ border-color: var(--secondary);
194
+ transform: translateY(-2px);
195
+ box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
196
+ }
197
+
198
+ .ant-btn-default[title="Code ์‹คํ–‰"] {
199
+ background-color: var(--success);
200
+ color: white;
201
+ border: none;
202
+ }
203
+
204
+ .ant-btn-default[title="Code ์‹คํ–‰"]:hover {
205
+ background-color: #40d869;
206
+ }
207
+
208
+ .session-drawer .chatbot {
209
+ height: calc(100vh - 200px);
210
+ overflow-y: auto;
211
+ }
212
+
213
+ .session-history {
214
+ height: 700px;
215
+ overflow-y: auto;
216
+ padding: 1rem;
217
+ }
218
+
219
+ .prompt-grid {
220
+ display: grid;
221
+ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
222
+ gap: 1.5rem;
223
+ padding: 1.5rem;
224
+ }
225
+
226
+ .prompt-card {
227
+ background: var(--surface);
228
+ border-radius: 16px;
229
+ padding: 1.25rem;
230
+ cursor: pointer;
231
+ transition: all 0.3s;
232
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
233
+ min-height: 300px;
234
+ border: 1px solid var(--neutral-200);
235
+ }
236
+
237
+ .prompt-card:hover {
238
+ transform: translateY(-4px);
239
+ box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
240
+ }
241
+
242
+ .card-image {
243
+ width: 100%;
244
+ height: 200px;
245
+ object-fit: cover;
246
+ border-radius: 12px;
247
+ margin-bottom: 1rem;
248
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
249
+ }
250
+
251
+ .card-name {
252
+ font-weight: 600;
253
+ margin-bottom: 0.8rem;
254
+ font-size: 1.1rem;
255
+ color: var(--text-primary);
256
+ }
257
+
258
+ .card-prompt-container {
259
+ position: relative;
260
+ padding-right: 60px;
261
+ }
262
+
263
+ .card-prompt {
264
+ font-size: 0.9rem;
265
+ color: var(--text-secondary);
266
+ display: -webkit-box;
267
+ -webkit-line-clamp: 3;
268
+ -webkit-box-orient: vertical;
269
+ overflow: hidden;
270
+ background: var(--neutral-100);
271
+ padding: 0.8rem;
272
+ border-radius: 8px;
273
+ line-height: 1.5;
274
+ }
275
+
276
+ .copy-btn {
277
+ position: absolute;
278
+ right: 0;
279
+ top: 0;
280
+ padding: 6px 12px;
281
+ background: var(--accent);
282
+ color: white;
283
+ border: none;
284
+ border-radius: 6px;
285
+ cursor: pointer;
286
+ font-size: 0.9em;
287
+ transition: all 0.2s ease;
288
+ }
289
+
290
+ .copy-btn:hover {
291
+ background: var(--primary);
292
+ transform: translateY(-1px);
293
+ }
294
+
295
+ .copy-btn:active {
296
+ transform: translateY(0);
297
+ }
298
+
299
+ .template-buttons {
300
+ margin-top: 1rem;
301
+ display: flex;
302
+ gap: 0.5rem;
303
+ }
304
+
305
+ /* Custom scrollbar */
306
+ ::-webkit-scrollbar {
307
+ width: 8px;
308
+ height: 8px;
309
+ }
310
+
311
+ ::-webkit-scrollbar-track {
312
+ background: var(--neutral-100);
313
+ }
314
+
315
+ ::-webkit-scrollbar-thumb {
316
+ background: var(--neutral-300);
317
+ border-radius: 4px;
318
+ }
319
+
320
+ ::-webkit-scrollbar-thumb:hover {
321
+ background: var(--neutral-400);
322
+ }
323
+
324
+ /* Drawer customization */
325
+ .ant-drawer-content-wrapper {
326
+ border-radius: 16px 0 0 16px;
327
+ }
328
+
329
+ .ant-drawer-header {
330
+ background: var(--primary);
331
+ color: white;
332
+ border-radius: 16px 0 0 0;
333
+ }
334
+
335
+ .ant-drawer-title {
336
+ color: white;
337
+ font-weight: 500;
338
+ }
339
+
340
+ .ant-drawer-close {
341
+ color: white;
342
+ }
343
+
344
+ .ant-drawer-body {
345
+ background: var(--surface);
346
+ }
347
+
348
+ /* Responsive adjustments */
349
+ @media (max-width: 768px) {
350
+ .left_header {
351
+ padding: 1rem;
352
+ }
353
+
354
+ .prompt-grid {
355
+ grid-template-columns: 1fr;
356
+ }
357
+
358
+ .setting-buttons {
359
+ flex-wrap: wrap;
360
+ }
361
+
362
+ .ant-btn {
363
+ min-width: 60px;
364
+ font-size: 0.9rem;
365
+ }
366
+ }
367
+
368
+ /* Animations */
369
+ @keyframes fadeIn {
370
+ from { opacity: 0; transform: translateY(10px); }
371
+ to { opacity: 1; transform: translateY(0); }
372
+ }
373
+
374
+ .fade-in {
375
+ animation: fadeIn 0.5s ease-out;
376
+ }
config.py ADDED
@@ -0,0 +1,228 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ DEMO_LIST = [
3
+
4
+ {
5
+ "card": {
6
+ "index": 1
7
+ },
8
+ "title": "3D ๋ถ„์ž ์‹œ๋ฎฌ๋ ˆ์ดํ„ฐ",
9
+ "description": "Three.js๋กœ 3D ๋ถ„์ž ๊ตฌ์กฐ๋ฅผ ์‹œ๊ฐํ™”ํ•˜์„ธ์š”. ํšŒ์ „, ์คŒ, ์›์ž ์ •๋ณด ํ‘œ์‹œ ๊ธฐ๋Šฅ๊ณผ ์• ๋‹ˆ๋ฉ”์ด์…˜ ํšจ๊ณผ๋ฅผ ๊ตฌํ˜„ํ•˜์„ธ์š”."
10
+ },
11
+ {
12
+ "card": {
13
+ "index": 2,
14
+ },
15
+ "title": "๋‹ค์ด๋‚˜๋ฏน ์ฐจํŠธ ๋Œ€์‰ฌ๋ณด๋“œ",
16
+ "description": "Create an interactive dashboard with Chart.js showing different types of charts (line, bar, pie) with smooth animations. Include buttons to switch between different data views.",
17
+ },
18
+
19
+ {
20
+ "card": {
21
+ "index": 4,
22
+ },
23
+ "title": "์Œ์•… ๋น„์ฃผ์–ผ๋ผ์ด์ €",
24
+ "description": "Web Audio API์™€ Canvas๋ฅผ ์‚ฌ์šฉํ•˜์—ฌ ์˜ค๋””์˜ค ๋น„์ฃผ์–ผ๋ผ์ด์ €๋ฅผ ์ œ์ž‘ํ•ด ๋ณด์„ธ์š”. ์Œ์•… ์ฃผํŒŒ์ˆ˜ ๋ฐ์ดํ„ฐ์— ๋ฐ˜์‘ํ•˜๋Š” ๋™์ ์ธ ๋ง‰๋Œ€๋“ค์ด ๋ถ€๋“œ๋Ÿฌ์šด ์• ๋‹ˆ๋ฉ”์ด์…˜์œผ๋กœ ์›€์ง์ด๋„๋ก ๊ตฌํ˜„ํ•ด์•ผ ํ•ฉ๋‹ˆ๋‹ค. ๋˜ํ•œ ์žฌ์ƒ/์ผ์‹œ ์ •์ง€ ์ปจํŠธ๋กค๊ณผ ์ƒ‰์ƒ ํ…Œ๋งˆ ์„ ํƒ ๊ธฐ๋Šฅ๋„ ํฌํ•จํ•˜์„ธ์š”."
25
+ },
26
+ {
27
+ "card": {
28
+ "index": 5,
29
+ },
30
+ "title": "Interactive Timeline",
31
+ "description": "Create a vertical timeline with animated entry points. When clicking on timeline items, show detailed information with smooth transitions. Include filtering options and scroll animations."
32
+ },
33
+ {
34
+ "card": {
35
+ "index": 6,
36
+ },
37
+ "title": "์นด๋“œ ๊ธฐ์–ต ๊ฒŒ์ž„",
38
+ "description": "Create a classic memory matching card game with flip animations. Include a scoring system, timer, and difficulty levels. Add satisfying match/mismatch animations and sound effects using Web Audio API."
39
+ },
40
+
41
+ {
42
+ "card": {
43
+ "index": 7
44
+ },
45
+ "title": "์ธํ„ฐ๋ž™ํ‹ฐ๋ธŒ ์ปฌ๋Ÿฌ ํŒ”๋ ˆํŠธ",
46
+ "description": "๋งˆ์šฐ์Šค ์›€์ง์ž„์— ๋”ฐ๋ผ ๋™์ ์œผ๋กœ ๋ณ€ํ•˜๋Š” ์ปฌ๋Ÿฌ ํŒ”๋ ˆํŠธ๋ฅผ ๋งŒ๋“œ์„ธ์š”. ์ƒ‰์ƒ ์„ ํƒ, ์ €์žฅ, ์กฐํ•ฉ ๊ธฐ๋Šฅ๊ณผ ํ•จ๊ป˜ ๋ถ€๋“œ๋Ÿฌ์šด ๊ทธ๋ผ๋ฐ์ด์…˜ ํšจ๊ณผ๋ฅผ ๊ตฌํ˜„ํ•˜์„ธ์š”."
47
+ },
48
+ {
49
+ "card": {
50
+ "index": 8
51
+ },
52
+ "title": "๋‚ ์”จ ์œ„์ ฏ ์• ๋‹ˆ๋ฉ”์ด์…˜",
53
+ "description": "ํ˜„์žฌ ๋‚ ์”จ ์ƒํƒœ๋ฅผ ๋ณด์—ฌ์ฃผ๋Š” ์• ๋‹ˆ๋ฉ”์ด์…˜ ์œ„์ ฏ์„ ๋งŒ๋“œ์„ธ์š”. ๋น„, ๋ˆˆ, ๊ตฌ๋ฆ„, ๋ฒˆ๊ฐœ ๋“ฑ์˜ ๋‚ ์”จ ํšจ๊ณผ๋ฅผ Canvas๋กœ ๊ตฌํ˜„ํ•˜๊ณ  ๋ถ€๋“œ๋Ÿฌ์šด ์ „ํ™˜ ํšจ๊ณผ๋ฅผ ์ถ”๊ฐ€ํ•˜์„ธ์š”."
54
+ },
55
+ {
56
+ "card": {
57
+ "index": 9
58
+ },
59
+ "title": "ํŒŒํ‹ฐํด ํ…์ŠคํŠธ ์ดํŽ™ํŠธ",
60
+ "description": "ํ…์ŠคํŠธ๊ฐ€ ํŒŒํ‹ฐํด๋กœ ๋ณ€ํ™˜๋˜๋Š” ํšจ๊ณผ๋ฅผ ๊ตฌํ˜„ํ•˜์„ธ์š”. ๋งˆ์šฐ์Šค ํ˜ธ๋ฒ„์‹œ ๊ธ€์ž๊ฐ€ ํฉ์–ด์กŒ๋‹ค๊ฐ€ ๋‹ค์‹œ ๋ชจ์ด๋Š” ์• ๋‹ˆ๋ฉ”์ด์…˜์„ Canvas๋กœ ๋งŒ๋“œ์„ธ์š”."
61
+ },
62
+ {
63
+ "card": {
64
+ "index": 10
65
+ },
66
+ "title": "3D ์ฑ…์žฅ ๊ฐค๋Ÿฌ๋ฆฌ",
67
+ "description": "CSS 3D ๋ณ€ํ™˜์„ ์‚ฌ์šฉํ•˜์—ฌ ํšŒ์ „ํ•˜๋Š” ์ฑ…์žฅ ํ˜•ํƒœ์˜ ๊ฐค๋Ÿฌ๋ฆฌ๋ฅผ ๋งŒ๋“œ์„ธ์š”. ๊ฐ ์ฑ…์„ ํด๋ฆญํ•˜๋ฉด ์ƒ์„ธ ์ •๋ณด๊ฐ€ ๋‚˜ํƒ€๋‚˜๋„๋ก ๊ตฌํ˜„ํ•˜์„ธ์š”."
68
+ },
69
+ {
70
+ "card": {
71
+ "index": 11
72
+ },
73
+ "title": "๋ฆฌ๋“ฌ ๊ฒŒ์ž„",
74
+ "description": "Web Audio API๋ฅผ ํ™œ์šฉํ•œ ๊ฐ„๋‹จํ•œ ๋ฆฌ๋“ฌ ๊ฒŒ์ž„์„ ๋งŒ๋“œ์„ธ์š”. ๋–จ์–ด์ง€๋Š” ๋…ธํŠธ์™€ ํƒ€์ด๋ฐ ํŒ์ •, ์ ์ˆ˜ ์‹œ์Šคํ…œ์„ ๊ตฌํ˜„ํ•˜์„ธ์š”."
75
+ },
76
+ {
77
+ "card": {
78
+ "index": 12
79
+ },
80
+ "title": "SVG ํŒจ์Šค ์• ๋‹ˆ๋ฉ”์ด์…˜",
81
+ "description": "SVG ํŒจ์Šค๋ฅผ ๋”ฐ๋ผ ์›€์ง์ด๋Š” ์• ๋‹ˆ๋ฉ”์ด์…˜์„ ๊ตฌํ˜„ํ•˜์„ธ์š”. ๋‹ค์–‘ํ•œ ๋„ํ˜•์ด ๊ทธ๋ ค์ง€๋Š” ๊ณผ์ •์„ ๋ณด์—ฌ์ฃผ๊ณ  ์ธํ„ฐ๋ž™ํ‹ฐ๋ธŒํ•œ ์ปจํŠธ๋กค์„ ์ถ”๊ฐ€ํ•˜์„ธ์š”."
82
+ },
83
+ {
84
+ "card": {
85
+ "index": 13
86
+ },
87
+ "title": "๋“œ๋กœ์ž‰ ๋ณด๋“œ",
88
+ "description": "Canvas๋ฅผ ์‚ฌ์šฉํ•œ ๊ทธ๋ฆฌ๊ธฐ ๋„๊ตฌ๋ฅผ ๋งŒ๋“œ์„ธ์š”. ๋ธŒ๋Ÿฌ์‹œ ํฌ๊ธฐ, ์ƒ‰์ƒ ๋ณ€๊ฒฝ, ์ง€์šฐ๊ฐœ ๊ธฐ๋Šฅ๊ณผ ๊ทธ๋ฆฌ๊ธฐ ๊ธฐ๋ก ์ €์žฅ ๊ธฐ๋Šฅ์„ ๊ตฌํ˜„ํ•˜์„ธ์š”."
89
+ },
90
+ {
91
+ "card": {
92
+ "index": 14
93
+ },
94
+ "title": "ํผ์ฆ ์Šฌ๋ผ์ด๋“œ ๊ฒŒ์ž„",
95
+ "description": "์ˆซ์ž๋‚˜ ์ด๋ฏธ์ง€๋ฅผ ์‚ฌ์šฉํ•œ ์Šฌ๋ผ์ด๋“œ ํผ์ฆ ๊ฒŒ์ž„์„ ๋งŒ๋“œ์„ธ์š”. ์ด๋™ ์• ๋‹ˆ๋ฉ”์ด์…˜๊ณผ ์™„์„ฑ ํ™•์ธ ๊ธฐ๋Šฅ์„ ์ถ”๊ฐ€ํ•˜์„ธ์š”."
96
+ },
97
+ {
98
+ "card": {
99
+ "index": 15
100
+ },
101
+ "title": "ํŒŒํ‹ฐํด ์ปค์„œ ํšจ๊ณผ",
102
+ "description": "๋งˆ์šฐ์Šค ์ปค์„œ๋ฅผ ๋”ฐ๋ผ๋‹ค๋‹ˆ๋Š” ํŒŒํ‹ฐํด ํšจ๊ณผ๋ฅผ ๋งŒ๋“œ์„ธ์š”. ๋‹ค์–‘ํ•œ ํŒŒํ‹ฐํด ํŒจํ„ด๊ณผ ์ƒ‰์ƒ ๋ณ€ํ™”๋ฅผ ๊ตฌํ˜„ํ•˜์„ธ์š”."
103
+ },
104
+ {
105
+ "card": {
106
+ "index": 16
107
+ },
108
+ "title": "์ธํ„ฐ๋ž™ํ‹ฐ๋ธŒ ๋‹ฌ๋ ฅ",
109
+ "description": "๋“œ๋ž˜๊ทธ ์•ค ๋“œ๋กญ์œผ๋กœ ์ผ์ •์„ ๊ด€๋ฆฌํ•  ์ˆ˜ ์žˆ๋Š” ๋‹ฌ๋ ฅ์„ ๋งŒ๋“œ์„ธ์š”. ์• ๋‹ˆ๋ฉ”์ด์…˜ ํšจ๊ณผ์™€ ์ผ์ • ํ•„ํ„ฐ๋ง ๊ธฐ๋Šฅ์„ ์ถ”๊ฐ€ํ•˜์„ธ์š”."
110
+ },
111
+
112
+ {
113
+ "card": {
114
+ "index": 18
115
+ },
116
+ "title": "ํƒ€์ž ๊ฒŒ์ž„",
117
+ "description": "๋–จ์–ด์ง€๋Š” ๋‹จ์–ด๋ฅผ ํƒ€์ดํ•‘ํ•˜์—ฌ ์ ์ˆ˜๋ฅผ ์–ป๋Š” ๊ฒŒ์ž„์„ ๋งŒ๋“œ์„ธ์š”. ๋‚œ์ด๋„ ์กฐ์ ˆ๊ณผ ํšจ๊ณผ์Œ์„ ์ถ”๊ฐ€ํ•˜์„ธ์š”."
118
+ },
119
+ {
120
+ "card": {
121
+ "index": 19
122
+ },
123
+ "title": "๋ฐ์ดํ„ฐ ์‹œ๊ฐํ™” ์• ๋‹ˆ๋ฉ”์ด์…˜",
124
+ "description": "D3.js๋ฅผ ์‚ฌ์šฉํ•˜์—ฌ ๋ฐ์ดํ„ฐ ๋ณ€ํ™”๋ฅผ ์• ๋‹ˆ๋ฉ”์ด์…˜์œผ๋กœ ๋ณด์—ฌ์ฃผ๋Š” ์ฐจํŠธ๋ฅผ ๋งŒ๋“œ์„ธ์š”. ๋‹ค์–‘ํ•œ ์ „ํ™˜ ํšจ๊ณผ๋ฅผ ์ถ”๊ฐ€ํ•˜์„ธ์š”."
125
+ },
126
+
127
+ {
128
+ "card": {
129
+ "index": 21
130
+ },
131
+ "title": "๋ฌผ๋ฆฌ ์‹œ๋ฎฌ๋ ˆ์ด์…˜",
132
+ "description": "Canvas๋ฅผ ์‚ฌ์šฉํ•˜์—ฌ ๊ฐ„๋‹จํ•œ ๋ฌผ๋ฆฌ ์‹œ๋ฎฌ๋ ˆ์ด์…˜์„ ๊ตฌํ˜„ํ•˜์„ธ์š”. ์ค‘๋ ฅ, ์ถฉ๋Œ, ํƒ„์„ฑ ํšจ๊ณผ๋ฅผ ์ ์šฉํ•œ ๊ณต ํŠ€๊ธฐ๊ธฐ ์‹œ๋ฎฌ๋ ˆ์ด์…˜์„ ๋งŒ๋“œ์„ธ์š”."
133
+ },
134
+ {
135
+ "card": {
136
+ "index": 22
137
+ },
138
+ "title": "์‚ฌ์šด๋“œ ๋ฏน์„œ",
139
+ "description": "Web Audio API๋ฅผ ์‚ฌ์šฉํ•˜์—ฌ ์—ฌ๋Ÿฌ ์Œ์›์„ ๋ฏน์‹ฑํ•  ์ˆ˜ ์žˆ๋Š” ์ธํ„ฐํŽ˜์ด์Šค๋ฅผ ๋งŒ๋“œ์„ธ์š”. ๋ณผ๋ฅจ, ํŒจ๋‹, ์ดํŽ™ํŠธ ์กฐ์ ˆ ๊ธฐ๋Šฅ์„ ๊ตฌํ˜„ํ•˜์„ธ์š”."
140
+ },
141
+ {
142
+ "card": {
143
+ "index": 23
144
+ },
145
+ "title": "3D ์นด๋“œ ๊ฐค๋Ÿฌ๋ฆฌ",
146
+ "description": "Three.js๋ฅผ ์‚ฌ์šฉํ•˜์—ฌ 3D ๊ณต๊ฐ„์—์„œ ํšŒ์ „ํ•˜๋Š” ์นด๋“œ ๊ฐค๋Ÿฌ๋ฆฌ๋ฅผ ๋งŒ๋“œ์„ธ์š”. ๋งˆ์šฐ์Šค ์ธํ„ฐ๋ž™์…˜๊ณผ ์• ๋‹ˆ๋ฉ”์ด์…˜์„ ์ถ”๊ฐ€ํ•˜์„ธ์š”."
147
+ },
148
+ {
149
+ "card": {
150
+ "index": 24
151
+ },
152
+ "title": "์ธํ„ฐ๋ž™ํ‹ฐ๋ธŒ ๋งต",
153
+ "description": "SVG๋ฅผ ์‚ฌ์šฉํ•˜์—ฌ ์ธํ„ฐ๋ž™ํ‹ฐ๋ธŒํ•œ ์ง€๋„๋ฅผ ๋งŒ๋“œ์„ธ์š”. ์ง€์—ญ ์„ ํƒ, ๋ฐ์ดํ„ฐ ์‹œ๊ฐํ™”, ์คŒ ๊ธฐ๋Šฅ์„ ๊ตฌํ˜„ํ•˜์„ธ์š”."
154
+ },
155
+ {
156
+ "card": {
157
+ "index": 25
158
+ },
159
+ "title": "๋ฒฝ๋Œ๊นจ๊ธฐ ๊ฒŒ์ž„",
160
+ "description": "๋ฒฝ๋Œ๊นจ๊ธฐ ๊ฒŒ์ž„"
161
+ },
162
+ {
163
+ "card": {
164
+ "index": 26
165
+ },
166
+ "title": "ํฌํ†  ์—๋””ํ„ฐ",
167
+ "description": "Canvas๋ฅผ ์‚ฌ์šฉํ•˜์—ฌ ๊ธฐ๋ณธ์ ์ธ ์ด๋ฏธ์ง€ ํŽธ์ง‘ ๋„๊ตฌ๋ฅผ ๋งŒ๋“œ์„ธ์š”. ํ•„ํ„ฐ ์ ์šฉ, ์ž๋ฅด๊ธฐ, ํšŒ์ „ ๊ธฐ๋Šฅ์„ ๊ตฌํ˜„ํ•˜์„ธ์š”."
168
+ },
169
+
170
+
171
+ {
172
+ "card": {
173
+ "index": 30
174
+ },
175
+ "title": "์ธํ„ฐ๋ž™ํ‹ฐ๋ธŒ ๋งˆ์ธ๋“œ๋งต",
176
+ "description": "D3.js๋ฅผ ์‚ฌ์šฉํ•˜์—ฌ ๋™์  ๋งˆ์ธ๋“œ๋งต์„ ๋งŒ๋“œ์„ธ์š”. ๋…ธ๋“œ ์ถ”๊ฐ€/์‚ญ์ œ, ๋“œ๋ž˜๊ทธ ์•ค ๋“œ๋กญ, ํ™•์žฅ/์ถ•์†Œ ์• ๋‹ˆ๋ฉ”์ด์…˜์„ ๊ตฌํ˜„ํ•˜์„ธ์š”."
177
+ },
178
+ {
179
+ "card": {
180
+ "index": 31
181
+ },
182
+ "title": "3D ์ง€ํ˜• ์ƒ์„ฑ๊ธฐ",
183
+ "description": "Three.js๋กœ ํ”„๋กœ์‹œ์ €๋Ÿด ์ง€ํ˜•์„ ์ƒ์„ฑํ•˜์„ธ์š”. ๊ณ ๋„, ํ…์Šค์ฒ˜, ๋ฌผ ํšจ๊ณผ๋ฅผ ์‹ค์‹œ๊ฐ„์œผ๋กœ ์กฐ์ •ํ•  ์ˆ˜ ์žˆ๊ฒŒ ๋งŒ๋“œ์„ธ์š”."
184
+ },
185
+
186
+
187
+
188
+ {
189
+ "card": {
190
+ "index": 35
191
+ },
192
+ "title": "3D ํ…์ŠคํŠธ ์• ๋‹ˆ๋ฉ”์ดํ„ฐ",
193
+ "description": "Three.js๋กœ 3D ํ…์ŠคํŠธ ์• ๋‹ˆ๋ฉ”์ด์…˜์„ ๋งŒ๋“œ์„ธ์š”. ๋‹ค์–‘ํ•œ ๋ณ€ํ™˜ ํšจ๊ณผ์™€ ๋ฌผ๋ฆฌ ๊ธฐ๋ฐ˜ ์ž…์ž ํšจ๊ณผ๋ฅผ ๊ตฌํ˜„ํ•˜์„ธ์š”."
194
+ },
195
+
196
+
197
+
198
+ {
199
+ "card": {
200
+ "index": 39
201
+ },
202
+ "title": "ํŒจํ„ด ๋””์ž์ด๋„ˆ",
203
+ "description": "SVG๋กœ ๋ฐ˜๋ณต ํŒจํ„ด์„ ๋””์ž์ธํ•˜๋Š” ๋„๊ตฌ๋ฅผ ๋งŒ๋“œ์„ธ์š”. ๋Œ€์นญ ์˜ต์…˜, ์ƒ‰์ƒ ์Šคํ‚ค๋งˆ ๊ด€๋ฆฌ, ์‹ค์‹œ๊ฐ„ ํ”„๋ฆฌ๋ทฐ๋ฅผ ๊ตฌํ˜„ํ•˜์„ธ์š”."
204
+ },
205
+
206
+ {
207
+ "card": {
208
+ "index": 41
209
+ },
210
+ "title": "์‹ค์‹œ๊ฐ„ ํ•„ํ„ฐ ์นด๋ฉ”๋ผ",
211
+ "description": "WebRTC์™€ Canvas๋ฅผ ์‚ฌ์šฉํ•˜์—ฌ ์‹ค์‹œ๊ฐ„ ๋น„๋””์˜ค ํ•„ํ„ฐ ์•ฑ์„ ๋งŒ๋“œ์„ธ์š”. ๋‹ค์–‘ํ•œ ์ด๋ฏธ์ง€ ์ฒ˜๋ฆฌ ํšจ๊ณผ๋ฅผ ๊ตฌํ˜„ํ•˜์„ธ์š”."
212
+ },
213
+
214
+ {
215
+ "card": {
216
+ "index": 47
217
+ },
218
+ "title": "Interactive Stars",
219
+ "description": "Interactive Stars: Watch stars and constellations appear in the night sky as you move your mouse."
220
+ },
221
+ {
222
+ "card": {
223
+ "index": 46
224
+ },
225
+ "title": "์‹ค์‹œ๊ฐ„ ๋ฐ์ดํ„ฐ ํ”Œ๋กœ์šฐ",
226
+ "description": "D3.js๋กœ ์‹ค์‹œ๊ฐ„ ๋ฐ์ดํ„ฐ ํ๋ฆ„์„ ์‹œ๊ฐํ™”ํ•˜์„ธ์š”. ๋…ธ๋“œ ๊ธฐ๋ฐ˜ ๋ฐ์ดํ„ฐ ์ฒ˜๋ฆฌ์™€ ์• ๋‹ˆ๋ฉ”์ด์…˜ ํšจ๊ณผ๋ฅผ ๊ตฌํ˜„ํ•˜์„ธ์š”."
227
+ }
228
+ ]