Skip to content

Commit

Permalink
Doc: 데이터 업데이트
Browse files Browse the repository at this point in the history
  • Loading branch information
alreadynyeong committed Jan 29, 2024
1 parent 9910d95 commit 9ac5602
Show file tree
Hide file tree
Showing 7 changed files with 80 additions and 32 deletions.
2 changes: 1 addition & 1 deletion components/common/projectBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const ProjectBox = ({ project }: { project: Project }) => {
return (
<Container main={project.main === true}>
<ImageBox>
{!(project.id === 10) && (
{!(project.id === 10 || project.id === 12) && (
<Image
src={`https://alreadynyeong.github.io/Portfolio/projects/${project.id}.png`}
width={isMobile ? 250 : 400}
Expand Down
38 changes: 20 additions & 18 deletions data/Activity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,22 +109,24 @@ export const ActivityList: Activity[] = [
},
],
},
// {
// id: 5,
// title: "UMC 5th",
// date: "2023.09~",
// role: "Server Lead",
// content: [
// {
// id: 0,
// text: "5회 UMC 해커톤 우수상",
// project: "Buddy-U",
// },
// {
// id: 1,
// text: "프로젝트 참여",
// project: "My Place",
// },
// ],
// },
{
id: 5,
title: "UMC 5th",
date: "2023.09~",
role: "Server Lead",
content: [
{
id: 0,
text: "5회 UMC 해커톤 우수상",
project: "Buddy-U",
projectNum: 11,
},
{
id: 1,
text: "프로젝트 참여",
project: "My Place",
projectNum: 12,
},
],
},
];
18 changes: 9 additions & 9 deletions data/Awards.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ export const AwardList: Award[] = [
project: "Green Quest",
projectNum: 7,
},
// {
// id: 3,
// title: "제 5회 UMC 해커톤",
// date: "2024.01.03",
// rank: "우수상",
// role: "Frontend 개발",
// project: "Buddy-U",
// projectNum: 2,
// },
{
id: 3,
title: "제 5회 UMC 해커톤",
date: "2024.01.03",
rank: "우수상",
role: "Frontend 개발",
project: "Buddy-U",
projectNum: 11,
},
];
48 changes: 47 additions & 1 deletion data/Project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const ProjectList: Project[] = [
{
id: 0,
title: "Hi Alcohol",
skills: ["Node.js", "JavaScript", "HTML", "CSS"],
skills: ["Node.js", "express", "JavaScript", "HTML", "CSS"],
description:
"가진 재료로 만들 수 있는 칵테일의 레시피 제공 및 Alcohol lover들을 위한 커뮤니티",
duration: "2021.11.05~2022.01.24",
Expand Down Expand Up @@ -345,4 +345,50 @@ export const ProjectList: Project[] = [
people: `
디자인 1명, 기획 1명, 서버 2명과 프론트 2명으로 구성된 프로젝트입니다.`,
},
{
id: 11,
title: "Buddy-U",
skills: ["React", "JavaScript", "Styled-component", "Eslint+Prettier"],
description: "논리적 사고자, INTP를 위한 친구 관리 서비스",
duration: "2024.01.02~2024.01.03",
part: ["Frontend"],
git: "https://github.com/UMC-TEAM-U/Front",

role: `
EsLint+Prettier를 사용해 코드 스타일을 일관성 있게 유지했습니다.
폰트 설정과 Netlify를 사용한 자동 배포를 구현했습니다.
리스트 박스 컴포넌트를 구현했습니다.
선물 관리, 버디 상세화면을 구현했습니다.
react-calendar 라이브러리를 사용하며 css를 수정해 원하는 디자인으로 구현했습니다.
react-spring-bottom-sheet를 사용해 일정을 추가하는 bottom sheet를 구현했습니다.
`,
people: `
디자인 1명, 기획 1명, 서버 4명과 프론트 3명으로 구성된 프로젝트입니다.`,
result: `
제 5회 UMC 해커톤에서 우수상을 수상했습니다.
react-calendar 라이브러리의 css를 수정하며 해당 라이브러리의 스타일을 수정하는 방법을 알게 되었습니다.
`,
},
{
id: 12,
title: "MyPlace",
skills: ["Node.js", "express", "JavaScript"],
description: "사용자 저장 장소 기반 기록 + 일정 관리 서비스",
duration: "2023.12.29~진행중",
part: ["Server"],
git: "https://github.com/MYPLACE-team/MYPLACE-Backend",

role: `
마플 서비스에 장소를 추가할 수 있는 기능을 구현했습니다.
사용자의 관심장소 추가/취소를 구현했습니다.
사용자가 다녀온 장소를 기록할 수 있는 아카이브의 CRUD를 구현했습니다.
`,
people: `
디자인 1명, 기획 1명, 서버 3명과 프론트 2명으로 구성된 프로젝트입니다.`,
},
];
4 changes: 2 additions & 2 deletions pages/about/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ const About = () => {
<Box>
<Title>학력</Title>
<Content>
{/* 성신여자대학교 컴퓨터공학과<Date>2019.03 ~</Date> */}
컴퓨터공학과<Date>2019.03 ~</Date>
성신여자대학교 컴퓨터공학과 졸업<Date>2019.03 ~ 2024.02</Date>
{/* 컴퓨터공학과<Date>2019.03 ~</Date> */}
</Content>
</Box>
<Box>
Expand Down
2 changes: 1 addition & 1 deletion pages/project/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const Detail = () => {
</Top>
<Parts part={data?.part} />
<Skils skills={data?.skills} />
{!(data?.id === 10) && (
{!(data?.id === 10 || data?.id === 12) && (
<ImageBox>
<Image
src={`https://alreadynyeong.github.io/Portfolio/projects/${data?.id}.png`}
Expand Down
Binary file added public/projects/11.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 9ac5602

Please sign in to comment.