We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1e770e commit 2fbd6eeCopy full SHA for 2fbd6ee
src/features/about/activity/data/seminar.ts
@@ -2,16 +2,22 @@ import type { Activity } from '~/about/activity/models';
2
import { ActivityType } from '~/about/activity/models';
3
4
export const seminar: Activity[] = [
5
+ {
6
+ name: '[우아콘] 당연해진 디자인시스템, 그다음 이야기: AST와 MCP로 여는 미래',
7
+ url: 'https://2025.woowacon.com/sessions?sessionId=819',
8
+ startDate: 1761634200000, // 2025.10.28 15:50
9
+ endDate: 1761636600000, // 2025.10.28 16:30
10
+ },
11
{
12
name: '우아콘 이그나이트 - 오픈소스 참여 경험',
13
url: '/posts/2024-woowa-ignite',
- startDate: 1730214000000,
- endDate: 1730214000000,
14
+ startDate: 1730214000000, // 2024.10.28 15:50
15
+ endDate: 1730214000000, // 2024.10.28 16:30
16
},
17
18
name: '모여봐요 오픈소스의 숲',
19
url: '/posts/geultto8-open-source-seminar',
- startDate: 1693567800000,
- endDate: 1693567800000,
20
+ startDate: 1693567800000, // 2023.09.01 15:50
21
+ endDate: 1693567800000, // 2023.09.01 16:30
22
23
].map((activity) => ({ ...activity, type: ActivityType.seminar }));
0 commit comments