diff --git a/frontend/src/app/page.tsx b/frontend/src/app/page.tsx index 196970a..eaec0e6 100644 --- a/frontend/src/app/page.tsx +++ b/frontend/src/app/page.tsx @@ -442,10 +442,10 @@ export default function Home() { }} className="border rounded-lg px-3 py-1.5 text-sm text-gray-600" > - + {channels.map((ch) => ( ))} @@ -454,9 +454,9 @@ export default function Home() { onChange={(e) => setCuisineFilter(e.target.value)} className="border rounded-lg px-3 py-1.5 text-sm text-gray-600" > - + {CUISINE_GROUPS.map((g) => ( - + ))} {countryFilter && cities.length > 0 && ( @@ -488,9 +488,9 @@ export default function Home() { onChange={(e) => handleCityChange(e.target.value)} className="border rounded-lg px-3 py-1.5 text-sm text-gray-600" > - + {cities.map((c) => ( - + ))} )} @@ -500,9 +500,9 @@ export default function Home() { onChange={(e) => handleDistrictChange(e.target.value)} className="border rounded-lg px-3 py-1.5 text-sm text-gray-600" > - + {districts.map((d) => ( - + ))} )} @@ -516,14 +516,14 @@ export default function Home() { }`} title="지도 μ˜μ—­ λ‚΄ μ‹λ‹Ήλ§Œ ν‘œμ‹œ" > - {boundsFilterOn ? "πŸ“ μ˜μ—­" : "πŸ“"} + {boundsFilterOn ? "πŸ“ μ˜μ—­ ν•„ν„°" : "πŸ“ μ˜μ—­"} {user && ( <> @@ -618,7 +618,7 @@ export default function Home() { : "text-gray-600" }`} > - {showMobileFilters ? "βœ• ν•„ν„°" : "β–½ ν•„ν„°"} + {showMobileFilters ? "βœ• λ‹«κΈ°" : "πŸ”½ ν•„ν„°"} {!showMobileFilters && (channelFilter || cuisineFilter || priceFilter || countryFilter || boundsFilterOn) && ( {[channelFilter, cuisineFilter, priceFilter, countryFilter, boundsFilterOn].filter(Boolean).length} @@ -668,10 +668,10 @@ export default function Home() { }} className="border rounded-lg px-2.5 py-1.5 text-xs text-gray-600 bg-white" > - + {channels.map((ch) => ( ))} @@ -680,9 +680,9 @@ export default function Home() { onChange={(e) => setCuisineFilter(e.target.value)} className="border rounded-lg px-2.5 py-1.5 text-xs text-gray-600 bg-white" > - + {CUISINE_GROUPS.map((g) => ( - + ))} @@ -703,9 +703,9 @@ export default function Home() { onChange={(e) => handleCountryChange(e.target.value)} className="border rounded-lg px-2.5 py-1.5 text-xs text-gray-600 bg-white" > - + {countries.map((c) => ( - + ))} {countryFilter && cities.length > 0 && ( @@ -714,9 +714,9 @@ export default function Home() { onChange={(e) => handleCityChange(e.target.value)} className="border rounded-lg px-2.5 py-1.5 text-xs text-gray-600 bg-white" > - + {cities.map((c) => ( - + ))} )} @@ -726,9 +726,9 @@ export default function Home() { onChange={(e) => handleDistrictChange(e.target.value)} className="border rounded-lg px-2.5 py-1.5 text-xs text-gray-600 bg-white" > - + {districts.map((d) => ( - + ))} )}