유명 유튜브 영상 기반 맛집 소개 웹 애플리케이션.
개발기간: 2025.01 ~ 2025.03
맛길은 유튜브를 통해 검증된 인기 맛집 리스트를 제공하는 웹 애플리케이션입니다. 사용자는 유튜브 영상으로 확인된 맛집의 다양한 메뉴를 살펴볼 수 있으며, 실시간 길찾기 기능을 통해 목적지까지의 최적 경로를 손쉽게 찾을 수 있습니다.
A web application providing a verified list of popular restaurants on YouTube and real-time optimal route
Matgil is a web application that provides a list of popular restaurants verified through YouTube. Users can explore various menus of the restaurants confirmed in YouTube videos, and with the real-time navigation feature, they can easily find the optimal route to their destination.
$ git clone https://github.com/hpk5802/mat-gil.git
$ cd mat-gil
$ npm install
$ npm run dev| 메인 페이지 | 채널(리스트) 페이지 |
|---|---|
![]() |
![]() |
| 상세 페이지 | 길 찾기 |
![]() |
![]() |
| 길 찾기 시연 | |
![]() |
- 유명 유튜브 채널(또간집, 먹을텐데, 미식은 경험이다, 줄서는 식당, 님아 그 식당을 가오)의 맛집 정보 제공(영상, 메뉴, 위치)
- Youtube Data API & Naver Map API 사용
- 추후 채널, 맛집 추가 예정
- 현재 위치에서 맛집까지 실시간 최적 경로 확인 (거리, 예상 시간, 택시 요금, 통행료)
- Geolocation API & Naver Direction API 사용
- 현재 자동차 경로만 지원, 추후 Naver Direction API 업데이트에 맞춰 자동차 길찾기 외 기능은 추가 예정
app
┣ api
┃ ┣ directions
┃ ┃ ┗ route.ts
┃ ┣ sitemap
┃ ┃ ┗ route.ts
┃ ┗ [channel]
┃ ┃ ┣ [id]
┃ ┃ ┃ ┗ route.ts
┃ ┃ ┗ route.ts
┣ components
┃ ┣ common
┃ ┃ ┣ Dialog.tsx
┃ ┃ ┣ Divider.tsx
┃ ┃ ┣ Header.tsx
┃ ┃ ┣ LazyImage.tsx
┃ ┃ ┣ ScrollButton.tsx
┃ ┃ ┗ Tag.tsx
┃ ┣ direction
┃ ┃ ┣ DirectionDescription.tsx
┃ ┃ ┣ DirectionDescriptionSkeleton.tsx
┃ ┃ ┗ DirectionWrap.tsx
┃ ┣ icons
┃ ┃ ┣ IconArrowLeft.tsx
┃ ┃ ┣ IconArrowRight.tsx
┃ ┃ ┣ IconCharge.tsx
┃ ┃ ┣ IconClock.tsx
┃ ┃ ┣ IconClose.tsx
┃ ┃ ┣ IconHandle.tsx
┃ ┃ ┣ IconInfo.tsx
┃ ┃ ┣ IconMarker.tsx
┃ ┃ ┣ IconNavigation.tsx
┃ ┃ ┣ IconRetry.tsx
┃ ┃ ┗ Logo.tsx
┃ ┣ lists
┃ ┃ ┣ Card.tsx
┃ ┃ ┣ Category.tsx
┃ ┃ ┗ ListContainer.tsx
┃ ┣ Map
┃ ┃ ┣ DirectionMap.tsx
┃ ┃ ┣ DirectionMapSkeleton.tsx
┃ ┃ ┣ Map.tsx
┃ ┃ ┗ MapSkeleton.tsx
┃ ┣ menu
┃ ┃ ┗ Menu.tsx
┃ ┣ Skeleton
┃ ┃ ┗ SkeletonImage.tsx
┃ ┣ video
┃ ┃ ┗ VideoPlayer.tsx
┃ ┗ TagContainer.tsx
┣ constants
┃ ┣ channelMap.ts
┃ ┗ tags.ts
┣ hooks
┃ ┣ useDialog.ts
┃ ┣ useFetchData.ts
┃ ┗ useIntersectionObserver.ts
┣ lib
┃ ┣ getRoute.ts
┃ ┗ instance.ts
┣ types
┃ ┣ directions.ts
┃ ┗ youtube.ts
┣ utils
┃ ┣ convertTimeToSeconds.ts
┃ ┣ format.ts
┃ ┗ handleGeolocationError.ts
┣ [channel]
┃ ┣ [id]
┃ ┃ ┗ page.tsx
┃ ┗ page.tsx
┣ apple-icon.png
┣ favicon.ico
┣ globals.css
┣ layout.tsx
┣ page.tsx
┣ robots.txt
┗ sitemap.ts
data
┣ baekjongwon.json
┣ haennim.json
┣ hongseokcheon.json
┣ pungja.json
┗ seongsigyeong.json





