auto-commit for 0175172f-4f7e-4804-ad7f-68312dcdad0d

This commit is contained in:
emergent-agent-e1
2026-07-23 22:23:41 +00:00
parent 22d8479b39
commit bd8480bd14
11 changed files with 89 additions and 31 deletions
+4 -4
View File
@@ -58,12 +58,12 @@ export default function Browse() {
<div className="-mt-20 relative z-10 pb-24">
{continueWatching.length > 0 && (
<Row title="Continue Watching" movies={continueWatching} onCardClick={handleMore} progressMap={progressMap} />
<Row title="Resume" movies={continueWatching} onCardClick={handleMore} progressMap={progressMap} />
)}
<Row title="Trending Now" movies={trending} onCardClick={handleMore} progressMap={progressMap} />
<Row title="New Releases" movies={newReleases} onCardClick={handleMore} progressMap={progressMap} />
<Row title="Popular" movies={trending} onCardClick={handleMore} progressMap={progressMap} />
<Row title="Fresh Arrivals" movies={newReleases} onCardClick={handleMore} progressMap={progressMap} />
{watchlist.length > 0 && (
<Row title="My List" movies={watchlist} onCardClick={handleMore} progressMap={progressMap} />
<Row title="Your Shelf" movies={watchlist} onCardClick={handleMore} progressMap={progressMap} />
)}
{genres.slice(0, 6).map((g) => {
const list = byGenre(g);