diff --git a/frontend/src/app/page.tsx b/frontend/src/app/page.tsx index 254d11c..ab57bbc 100644 --- a/frontend/src/app/page.tsx +++ b/frontend/src/app/page.tsx @@ -421,15 +421,15 @@ export default function Home() {
{/* ── Header row 1: Logo + User ── */}
-
+
{/* Desktop: search + filters — two rows */} -
+
{/* Row 1: Search + dropdown filters */} -
+
@@ -440,7 +440,7 @@ export default function Home() { setSelected(null); setShowDetail(false); }} - className="border rounded px-2 py-1 text-sm text-gray-600" + className="border rounded-lg px-3 py-1.5 text-sm text-gray-600" > {channels.map((ch) => ( @@ -452,7 +452,7 @@ export default function Home() { setPriceFilter(e.target.value)} - className="border rounded px-2 py-1 text-sm text-gray-600" + className="border rounded-lg px-3 py-1.5 text-sm text-gray-600" > {PRICE_GROUPS.map((g) => ( @@ -472,7 +472,7 @@ export default function Home() { handleCityChange(e.target.value)} - className="border rounded px-2 py-1 text-sm text-gray-600" + className="border rounded-lg px-3 py-1.5 text-sm text-gray-600" > {cities.map((c) => ( @@ -495,7 +495,7 @@ export default function Home() { { @@ -665,7 +665,7 @@ export default function Home() { setSelected(null); setShowDetail(false); }} - className="border rounded px-2 py-1 text-xs text-gray-600 bg-white" + className="border rounded-lg px-2.5 py-1.5 text-xs text-gray-600 bg-white" > {channels.map((ch) => ( @@ -677,7 +677,7 @@ export default function Home() { setPriceFilter(e.target.value)} - className="border rounded px-2 py-1 text-xs text-gray-600 bg-white" + className="border rounded-lg px-2.5 py-1.5 text-xs text-gray-600 bg-white" > {PRICE_GROUPS.map((g) => ( @@ -696,11 +696,11 @@ export default function Home() {
{/* Region filters */} -
+
handleCityChange(e.target.value)} - className="border rounded px-2 py-1 text-xs text-gray-600 bg-white" + className="border rounded-lg px-2.5 py-1.5 text-xs text-gray-600 bg-white" > {cities.map((c) => ( @@ -723,7 +723,7 @@ export default function Home() {