File tree Expand file tree Collapse file tree 1 file changed +10
-28
lines changed
src/pages/home/resume/components Expand file tree Collapse file tree 1 file changed +10
-28
lines changed Original file line number Diff line number Diff line change @@ -37,44 +37,26 @@ const ProjectCard = ({ project }: ProjectCardProps) => {
37
37
</ Text >
38
38
< ReactMarkdown > { description } </ ReactMarkdown >
39
39
40
- { isMobile || < Spacer height = { "10px" } /> }
41
-
42
- < Text font = { Font . Medium } size = { font ( 1.25 ) } >
43
- What I did
44
- </ Text >
45
40
< ul
46
41
style = { {
47
42
margin : "0px" ,
43
+ paddingLeft : "20px" ,
48
44
} }
49
45
>
50
46
{ whatIDid . map ( ( whatIDid ) => (
51
47
< li key = { whatIDid } >
52
- < Text > { whatIDid } </ Text >
48
+ < Text size = { font ( 1 ) } > { whatIDid } </ Text >
53
49
</ li >
54
50
) ) }
55
- </ ul >
56
51
57
- < Spacer height = { "10px" } />
58
-
59
- { techStacks && techStacks . length > 0 && (
60
- < >
61
- < Text font = { Font . Medium } size = { font ( 1.25 ) } >
62
- What I used
63
- </ Text >
64
-
65
- < ul
66
- style = { {
67
- margin : "0px" ,
68
- } }
69
- >
70
- { techStacks . map ( ( techStack ) => (
71
- < li key = { techStack } >
72
- < Text > { techStack } </ Text >
73
- </ li >
74
- ) ) }
75
- </ ul >
76
- </ >
77
- ) }
52
+ { techStacks && techStacks . length > 0 && (
53
+ < li >
54
+ < Text size = { font ( 1 ) } >
55
+ 사용 기술: { techStacks . map ( ( techStack ) => techStack ) . join ( ", " ) }
56
+ </ Text >
57
+ </ li >
58
+ ) }
59
+ </ ul >
78
60
</ Flex >
79
61
) ;
80
62
} ;
You can’t perform that action at this time.
0 commit comments