-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement restaurant list fetching logic
- Loading branch information
Showing
21 changed files
with
360 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
import { InfoItemProps } from "components/Portfolio/About/common/InfoItem"; | ||
|
||
const ActivityData: InfoItemProps[] = [ | ||
{ | ||
icon: "/images/university-old-logo.png", | ||
title: "전북대학교 아동 교육봉사", | ||
description: "전북대학교", | ||
startedAt: "2016.03", | ||
endedAt: "2016.05", | ||
}, | ||
{ | ||
icon: "/images/goyang-logo.png", | ||
title: "도래울고등학교 영어교과 멘토링", | ||
description: "경기도 고양교육지원청", | ||
startedAt: "2017.02", | ||
endedAt: "2017.06", | ||
}, | ||
{ | ||
icon: "/images/goyang-logo.png", | ||
title: "고양중학교 영어교과 멘토링", | ||
description: "경기도 고양교육지원청", | ||
startedAt: "2020.09", | ||
endedAt: "2020.11", | ||
}, | ||
{ | ||
icon: "/images/koala-logo.png", | ||
title: "교내 알고리즘 학회 여름방학 스터디", | ||
description: "KOALA", | ||
startedAt: "2021.07", | ||
endedAt: "2021.08", | ||
}, | ||
{ | ||
icon: "/images/university-logo.jpg", | ||
title: "코딩입문(Python) 과목 조교", | ||
description: "한국항공대학교", | ||
startedAt: "2021.03", | ||
endedAt: "2021.06", | ||
}, | ||
{ | ||
icon: "/images/university-logo.jpg", | ||
title: "산학프로젝트 과목 조교", | ||
description: "한국항공대학교", | ||
startedAt: "2022.03", | ||
endedAt: "2022.06", | ||
}, | ||
]; | ||
|
||
export default ActivityData; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { InfoItemProps } from "components/Portfolio/About/common/InfoItem"; | ||
|
||
const CareerData: InfoItemProps[] = [ | ||
{ | ||
icon: "/images/travelflan-logo.jpg", | ||
title: "프리디소프트", | ||
description: "프론트엔드 ICT 인턴십 인턴", | ||
startedAt: "2021.09", | ||
endedAt: "2022.03", | ||
}, | ||
]; | ||
|
||
export default CareerData; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import { InfoItemProps } from "components/Portfolio/About/common/InfoItem"; | ||
|
||
const ChallengeData: InfoItemProps[] = [ | ||
{ | ||
icon: "/images/nipa-logo.png", | ||
title: "오픈소스 컨트리뷰톤", | ||
description: "모던 자바스크립트 튜토리얼 / 정보통신산업진흥원장상", | ||
startedAt: "", | ||
endedAt: "2019.11", | ||
}, | ||
{ | ||
icon: "/images/government-logo.png", | ||
title: "제 5회 정부혁신제안 해커톤 본선 참여", | ||
description: "행정안전부", | ||
endedAt: "2021.05", | ||
targetUrl: "https://github.com/C17AN/carbon-clock", | ||
}, | ||
{ | ||
icon: "/images/etri-logo.png", | ||
title: "ETRI OPEN API 활용사례 공모전 참여", | ||
description: "한국전자통신연구원", | ||
endedAt: "2021.10", | ||
targetUrl: "https://github.com/C17AN/TALKYTALKY", | ||
}, | ||
{ | ||
icon: "/images/university-logo.jpg", | ||
title: "2021 항공대 프로그래밍 경진대회", | ||
description: "한국항공대 소프트웨어학과 / 11등", | ||
endedAt: "2021.11", | ||
}, | ||
]; | ||
|
||
export default ChallengeData; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import { InfoItemProps } from "components/Portfolio/About/common/InfoItem"; | ||
|
||
const EducationData: InfoItemProps[] = [ | ||
{ | ||
icon: "/images/university-logo.jpg", | ||
title: "한국항공대학교", | ||
description: "AI융합대학 소프트웨어학과", | ||
startedAt: "2017.02", | ||
endedAt: "2023.02", | ||
}, | ||
{ | ||
icon: "/images/toeic-logo.jpeg", | ||
title: "TOEIC", | ||
description: "885점", | ||
endedAt: "2022.02", | ||
}, | ||
{ | ||
icon: "/images/qnet-logo.png", | ||
title: "정보처리기능사", | ||
description: "한국산업인력공단", | ||
endedAt: "2019.03", | ||
}, | ||
{ | ||
icon: "/images/az-900-logo.png", | ||
title: "Azure Fundamentals (AZ-900)", | ||
description: "Microsoft", | ||
endedAt: "2022.01", | ||
}, | ||
]; | ||
|
||
export default EducationData; |
Oops, something went wrong.