Upgrade Fresh and add a bunch of small QOL improvements #16

Merged
timharek merged 21 commits from chore-upgrade-fresh into main 2024-03-24 12:41:18 +00:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit b66022297f - Show all commits

View File

@ -6,10 +6,11 @@ export default function SeriesCard(props: { serie: SearchResult; origin: string
const image = props.serie.images[0];
return (
<div className="border-2 my-2 p-2">
<div className="mx-auto h-full w-full">
<div className="mx-auto h-full w-full space-y-2">
<h2 className="text-xl">{props.serie.title}</h2>
<p className="text-md">{props.serie.description}</p>
<img src={image.uri} width={image.width} />
<code className="font-mono bg-black text-white select-all p-2">{feedUrl.toString()}</code>
<CopyButton text={feedUrl.toString()}>
Kopier URL
</CopyButton>