feat: /titles page implementation with cursor pagination
This commit is contained in:
parent
a515769823
commit
397d2bcf70
37 changed files with 797 additions and 1247 deletions
|
|
@ -10,12 +10,12 @@ export function TitleCardSquare({ title }: { title: Title }) {
|
|||
borderRadius: 8,
|
||||
textAlign: "center"
|
||||
}}>
|
||||
{title.posterUrl && (
|
||||
<img src={title.posterUrl} width={140} />
|
||||
{title.poster?.image_path && (
|
||||
<img src={title.poster.image_path} width={140} />
|
||||
)}
|
||||
<div>
|
||||
<h4>{title.name}</h4>
|
||||
<small>{title.year} • {title.rating}</small>
|
||||
<h4>{title.title_names["en"]}</h4>
|
||||
<small>{title.release_year} • {title.rating}</small>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue