Upgrade Fresh and add a bunch of small QOL improvements #16
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue