File tree Expand file tree Collapse file tree 3 files changed +24
-2
lines changed
Expand file tree Collapse file tree 3 files changed +24
-2
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,12 @@ import type { Activity } from '~/about/activity/models';
22import { ActivityType } from '~/about/activity/models' ;
33
44export 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' ,
Original file line number Diff line number Diff 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} ;
Original file line number Diff line number Diff 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 } ;
2929export const Sentence : FunctionComponent < SentenceProps > = ( {
3030 value,
3131 children,
You can’t perform that action at this time.
0 commit comments