diff --git a/frontend/src/app/page.tsx b/frontend/src/app/page.tsx index 7a1d0fe..196970a 100644 --- a/frontend/src/app/page.tsx +++ b/frontend/src/app/page.tsx @@ -511,7 +511,7 @@ export default function Home() { onClick={() => setBoundsFilterOn(!boundsFilterOn)} className={`px-3 py-1.5 text-sm border rounded-lg transition-colors ${ boundsFilterOn - ? "bg-blue-50 border-blue-300 text-blue-600" + ? "bg-orange-50 border-orange-300 text-orange-600" : "hover:bg-gray-100 text-gray-600" }`} title="지도 영역 내 식당만 표시" @@ -531,7 +531,7 @@ export default function Home() { onClick={handleToggleFavorites} className={`px-3.5 py-1.5 text-sm rounded-full border transition-colors ${ showFavorites - ? "bg-red-50 border-red-300 text-red-600" + ? "bg-rose-50 border-rose-300 text-rose-600" : "border-gray-300 text-gray-600 hover:bg-gray-100" }`} > @@ -541,7 +541,7 @@ export default function Home() { onClick={handleToggleMyReviews} className={`px-3.5 py-1.5 text-sm rounded-full border transition-colors ${ showMyReviews - ? "bg-blue-50 border-blue-300 text-blue-600" + ? "bg-orange-50 border-orange-300 text-orange-600" : "border-gray-300 text-gray-600 hover:bg-gray-100" }`} > @@ -566,7 +566,7 @@ export default function Home() { className="w-8 h-8 rounded-full border border-gray-200" /> ) : ( -
전화:{" "} - + {restaurant.phone}
@@ -127,7 +127,7 @@ export default function RestaurantDetail({ href={`https://www.google.com/maps/place/?q=place_id:${restaurant.google_place_id}`} target="_blank" rel="noopener noreferrer" - className="text-blue-600 hover:underline text-xs" + className="text-orange-600 hover:underline text-xs" > Google Maps에서 보기 @@ -161,7 +161,7 @@ export default function RestaurantDetail({