diff --git a/components/SeriesCard.tsx b/components/SeriesCard.tsx index a6cf1b9..0dae82e 100644 --- a/components/SeriesCard.tsx +++ b/components/SeriesCard.tsx @@ -5,9 +5,9 @@ export default function SeriesCard(props: { serie: SearchResult; origin: string const feedUrl = new URL(`/api/feeds/${props.serie.seriesId}`, props.origin); const image = props.serie.images[0]; return ( -
+
-

{props.serie.title}

+

{props.serie.title}

{props.serie.description}

{feedUrl.toString()} diff --git a/routes/index.tsx b/routes/index.tsx index c27eae8..d8f4062 100644 --- a/routes/index.tsx +++ b/routes/index.tsx @@ -28,7 +28,7 @@ export default function Home({ data }: PageProps) { {data.query ? `Søk: ${data.query} - ` : ""}NRSS -
+

📻 NRSS @@ -38,7 +38,7 @@ export default function Home({ data }: PageProps) { {data.result ? ( -
+
{data.result.map((result) => (