Skip to content

Commit

Permalink
Docs: 데이터 추가
Browse files Browse the repository at this point in the history
alreadynyeong committed Feb 19, 2024
1 parent 9ac5602 commit f7a2c97
Showing 6 changed files with 15 additions and 7 deletions.
2 changes: 1 addition & 1 deletion components/common/projectBox.tsx
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ const ProjectBox = ({ project }: { project: Project }) => {
return (
<Container main={project.main === true}>
<ImageBox>
{!(project.id === 10 || project.id === 12) && (
{!(project.id === 10) && (
<Image
src={`https://alreadynyeong.github.io/Portfolio/projects/${project.id}.png`}
width={isMobile ? 250 : 400}
4 changes: 2 additions & 2 deletions data/Activity.ts
Original file line number Diff line number Diff line change
@@ -63,7 +63,7 @@ export const ActivityList: Activity[] = [
{
id: 3,
title: "UMC 4th",
date: "2023.03~",
date: "2023.03~2023.09",
role: "Member",
content: [
{
@@ -112,7 +112,7 @@ export const ActivityList: Activity[] = [
{
id: 5,
title: "UMC 5th",
date: "2023.09~",
date: "2023.09~2024.02",
role: "Server Lead",
content: [
{
12 changes: 10 additions & 2 deletions data/Project.ts
Original file line number Diff line number Diff line change
@@ -378,17 +378,25 @@ export const ProjectList: Project[] = [
title: "MyPlace",
skills: ["Node.js", "express", "JavaScript"],
description: "사용자 저장 장소 기반 기록 + 일정 관리 서비스",
duration: "2023.12.29~진행중",
duration: "2023.12.29~2024.02.20",
part: ["Server"],
git: "https://github.com/MYPLACE-team/MYPLACE-Backend",

role: `
마플 서비스에 장소를 추가할 수 있는 기능을 구현했습니다.
마플 서비스에 새로운 장소를 추가할 수 있는 기능을 구현했습니다.
존재하는 장소의 상세 정보를 조회할 수 있는 기능을 구현했습니다.
사용자의 관심장소 추가/취소를 구현했습니다.
사용자가 다녀온 장소를 기록할 수 있는 아카이브의 CRUD를 구현했습니다.
유저의 기본 정보와 폴더를 조회할 수 있는 기능을 구현했습니다.
마플 장소의 정보 수정을 위한 문의 기능을 구현했습니다.
`,
people: `
디자인 1명, 기획 1명, 서버 3명과 프론트 2명으로 구성된 프로젝트입니다.`,
result: `
프론트엔드 개발자가 아닌 서버 개발자로 참여하면서, 서버 개발자의 역할을 경험할 수 있었습니다.
앞으로의 서버와의 협업에서 서버 개발자의 입장을 이해할 수 있는 좋은 경험이었습니다.
`,
},
];
2 changes: 1 addition & 1 deletion pages/about/index.tsx
Original file line number Diff line number Diff line change
@@ -54,7 +54,7 @@ const About = () => {
<div>React.js</div>
<div>Next.js</div>
<div>ReactNative</div>
<div>Node.js</div>
<div>Express</div>
</div>
</Skill>
<Skill>
2 changes: 1 addition & 1 deletion pages/project/index.tsx
Original file line number Diff line number Diff line change
@@ -47,7 +47,7 @@ const Detail = () => {
</Top>
<Parts part={data?.part} />
<Skils skills={data?.skills} />
{!(data?.id === 10 || data?.id === 12) && (
{!(data?.id === 10) && (
<ImageBox>
<Image
src={`https://alreadynyeong.github.io/Portfolio/projects/${data?.id}.png`}
Binary file added public/projects/12.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 f7a2c97

Please sign in to comment.