Skip to content

Commit 4e00429

Browse files
committed
feat(about): 공방 자료 추가
1 parent 31c03a6 commit 4e00429

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

src/features/about/activity/data/magazine.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ import type { Activity } from '~/about/activity/models';
22
import { ActivityType } from '~/about/activity/models';
33

44
export const magazine: Activity[] = [
5+
{
6+
name: 'Vite에서 CSS 우선순위를 지키는 법: 우아한공방의 문제 해결기',
7+
url: 'https://techblog.woowa.in/23866',
8+
startDate: 1763046000000,
9+
endDate: 1763132400000,
10+
},
511
{
612
name: 'Turborepo로 모노레포 개발 경험 향상하기',
713
url: 'https://engineering.linecorp.com/ko/blog/monorepo-with-turborepo',

src/features/about/work/data/woowabros/projects.tsx

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,23 @@ export const WoowaAtelier: Project = {
8888
},
8989
body: (
9090
<>
91-
<Section top>TBD</Section>
91+
<Section top>
92+
TBU
93+
<Paragraph>
94+
<Sentence>
95+
<ExternalLink
96+
href="https://techblog.woowa.in/23866"
97+
label="Vite에서 CSS 우선순위를 지키는 법: 우아한공방의 문제 해결기"
98+
/>
99+
</Sentence>
100+
<Sentence>
101+
<ExternalLink
102+
href="https://2025.woowacon.com/sessions?sessionId=819"
103+
label="당연해진 디자인시스템, 그다음 이야기: AST와 MCP로 여는 미래"
104+
/>
105+
</Sentence>
106+
</Paragraph>
107+
</Section>
92108
</>
93109
),
94110
};

src/features/about/work/shared/Body.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export const Paragraph: FunctionComponent<ParagraphProps> = ({ children }) => {
2525
return <ul className="pl-4 grid">{children}</ul>;
2626
};
2727

28-
type SentenceProps = PropsWithChildren & { value: string };
28+
type SentenceProps = PropsWithChildren & { value?: string };
2929
export const Sentence: FunctionComponent<SentenceProps> = ({
3030
value,
3131
children,

0 commit comments

Comments
 (0)