From e23ae51349c06e43234eb6969df2c588e0322451 Mon Sep 17 00:00:00 2001 From: Yeryeong Kang Date: Wed, 3 Jun 2026 18:19:22 +0900 Subject: [PATCH 01/20] =?UTF-8?q?feat:=20restaurants=20=EB=8D=B0=EC=9D=B4?= =?UTF-8?q?=ED=84=B0=20=EB=B6=84=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/restaurants.js | 41 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 src/utils/restaurants.js diff --git a/src/utils/restaurants.js b/src/utils/restaurants.js new file mode 100644 index 0000000..30fe97e --- /dev/null +++ b/src/utils/restaurants.js @@ -0,0 +1,41 @@ +export const restaurants = [ + { + id: "a01", + name: "피양콩할마니", + description: + "평양 출신의 할머니가 수십 년간 운영해온 비지 전문점 피양콩 할마니. 두부를 빼지 않은 되비지를 맛볼 수 있는 곳으로, ‘피양’은 평안도 사투리로 ‘평양’을 의미한다. 딸과 함께 운영하는 이곳에선 맷돌로 직접 간 콩만을 사용하며, 일체의 조미료를 넣지 않은 건강식을 선보인다. 콩비지와 피양 만두가 이곳의 대표 메뉴지만, 할머니가 옛날 방식을 고수하며 만들어내는 비지전골 또한 이 집의 역사를 느낄 수 있는 특별한 메뉴다. 반찬은 손님들이 먹고 싶은 만큼 덜어 먹을 수 있게 준비돼 있다.", + category: "한식", + }, + { + id: "a02", + name: "친친", + description: + "Since 2004 편리한 교통과 주차, 그리고 관록만큼 깊은 맛과 정성으로 정통 중식의 세계를 펼쳐갑니다", + category: "중식", + }, + { + id: "a03", + name: "잇쇼우", + description: + "잇쇼우는 정통 자가제면 사누끼 우동이 대표메뉴입니다. 기술은 정성을 이길 수 없다는 신념으로 모든 음식에 최선을 다하는 잇쇼우는 고객 한분 한분께 최선을 다하겠습니다", + category: "일식", + }, + { + id: "a04", + name: "이태리키친", + description: "늘 변화를 추구하는 이태리키친입니다.", + category: "양식", + }, + { + id: "a05", + name: "호아빈 삼성점", + description: "푸짐한 양에 국물이 일품인 쌀국수", + category: "아시안", + }, + { + id: "a06", + name: "도스타코스 선릉점", + description: "멕시칸 캐주얼 그릴", + category: "기타", + }, +]; From b7331103672335fbfc45d239f4181ffd3aa3e98e Mon Sep 17 00:00:00 2001 From: Yeryeong Kang Date: Wed, 3 Jun 2026 18:20:14 +0900 Subject: [PATCH 02/20] =?UTF-8?q?feat:=20restaurants=20=EB=B0=B0=EC=97=B4?= =?UTF-8?q?=EC=9D=84=20props=EB=A1=9C=20=EB=B0=9B=EC=95=84=EC=84=9C=20?= =?UTF-8?q?=ED=99=94=EB=A9=B4=EC=97=90=20=EA=B7=B8=EB=A6=AC=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.jsx | 3 +- src/RestaurantList.jsx | 151 +++++++++-------------------------------- 2 files changed, 35 insertions(+), 119 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 57d97d8..0a5b560 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,4 +1,5 @@ import "./App.css"; +import { restaurants } from "./utils/restaurants"; import Header from "./Header"; import CategoryFilter from "./CategoryFilter"; import RestaurantList from "./RestaurantList"; @@ -11,7 +12,7 @@ function App() {
- +