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) => (
-
+
))}
)}