diff --git a/frontend/src/pages/about.tsx b/frontend/src/pages/about.tsx index aaf6461f..0866c164 100644 --- a/frontend/src/pages/about.tsx +++ b/frontend/src/pages/about.tsx @@ -1,6 +1,7 @@ import { GetStaticProps } from 'next'; import { useTranslation } from 'next-i18next'; import Image from 'next/image'; +import Link from 'next/link'; import React from 'react'; import styled from 'styled-components'; import { CubeIcon } from '@components/common'; @@ -107,18 +108,28 @@ function About() { Developed By - {DEVELOPER_INFORMATION.map(({ name, introduction, field, career }) => ( + {DEVELOPER_INFORMATION.map(({ name, introduction, github, blog, email, field }) => ( {name}
- 깃허브 아이콘 - 링크 아이콘 + + + 깃허브 아이콘 + + + {blog && ( + + + 링크 아이콘 + + + )}
-
  • · 개발경력 : {career}
  • · 담당 : {field}
  • +
  • · 이메일: {email}
  • · {introduction}
  • @@ -226,10 +237,10 @@ const Profile = styled.div` `; const Name = styled.div` + ${({ theme }) => theme.common.flexRow} font-size: ${({ theme }) => theme.fontSize.xl}; color: ${({ theme }) => theme.colors.logo}; margin-left: 20px; - ${({ theme }) => theme.common.flexCenter} gap: 10px; `; diff --git a/frontend/src/utils/constants.ts b/frontend/src/utils/constants.ts index 5e8a51cb..fa8a4970 100644 --- a/frontend/src/utils/constants.ts +++ b/frontend/src/utils/constants.ts @@ -49,35 +49,35 @@ export const CUBE_RANK = { export const DEVELOPER_INFORMATION = [ { name: '장우석', - github: '', - blog: '', - career: '1년', + github: 'https://github.com/wkddntjr1123', + blog: 'https://wkddntjr1123.github.io/', field: 'Backend', - introduction: '안녕하세요. 장우석입니다.', + email: 'wkddntjr1123@gmail.com', + introduction: '함께 일하고싶은 개발자 장우석입니다. 커피☕ 사주세요!', }, { name: '강시온', - github: '', - blog: '', - career: '?년', + github: 'https://github.com/Yaminyam', + blog: 'https://velog.io/@siontama', field: 'Backend', - introduction: '안녕하세요. 강시온입니다.', + email: 'siontama@gmail.com', + introduction: '개발자를 위한 개발자 강시온 입니다', }, { name: '정윤규', - github: '', + github: 'https://github.com/asdf99245', blog: '', - career: '1년', field: 'Frontend', - introduction: '안녕하세요. 정윤규입니다.', + email: 'asdf99245@naver.com', + introduction: '사용자를 먼저 이해하는 프론트엔드 엔지니어 정윤규입니다.', }, { name: '정성윤', - github: '', + github: 'https://github.com/tunggary', blog: '', - career: '1년', field: 'Frontend', - introduction: '안녕하세요. 정성윤입니다.', + email: 'tunggary2@navr.com', + introduction: '최적화에 관심이 많은 프론트엔드 개발자 정성윤입니다.', }, ];