mirror of
https://github.com/aleksilassila/reiverr.git
synced 2026-04-20 15:55:14 +02:00
feat: add development database
This commit is contained in:
@@ -76,7 +76,11 @@
|
||||
|
||||
<DetachedPage class="flex flex-col relative">
|
||||
<div class="h-[calc(100vh-12rem)] flex px-32">
|
||||
<TmdbMoviesHeroShowcase movies={recommendedMovies.then(({ top10 }) => top10)} />
|
||||
<TmdbMoviesHeroShowcase
|
||||
movies={recommendedMovies.then(({ top10 }) =>
|
||||
top10.length ? top10 : upcomingMovies.then((m) => m.slice(0, 10))
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
<div class="my-16 space-y-8 relative z-10">
|
||||
{#if $libraryContinueWatching.length}
|
||||
|
||||
@@ -70,7 +70,11 @@
|
||||
|
||||
<DetachedPage class="flex flex-col relative">
|
||||
<div class="h-[calc(100vh-12rem)] flex px-32">
|
||||
<TmdbSeriesHeroShowcase series={recommendations.then(({ top10 }) => top10)} />
|
||||
<TmdbSeriesHeroShowcase
|
||||
series={recommendations.then(({ top10 }) =>
|
||||
top10.length ? top10 : upcomingSeries.then((s) => s.slice(0, 10))
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
<div class="my-16 space-y-8 relative z-10">
|
||||
{#if $libraryContinueWatching.length}
|
||||
|
||||
Reference in New Issue
Block a user