diff --git a/src/components/favouriteCard.astro b/src/components/favouriteCard.astro index 65854d5..e2cb6a1 100644 --- a/src/components/favouriteCard.astro +++ b/src/components/favouriteCard.astro @@ -3,22 +3,28 @@ export interface Props { name: string origin: string image: string + link: string } -const { image, origin, name } = Astro.props +const { link, image, origin, name } = Astro.props const img: string = `/favourites/${image}.webp` --- -
-
{name}
- {name} -

- {origin} -

-
+ +
+
{name}
+ {name} +

+ {origin} +

+
+