Skip to content

Commit

Permalink
fix: missing images
Browse files Browse the repository at this point in the history
  • Loading branch information
tedbennett committed Apr 25, 2023
1 parent 3f181ba commit 3bb8a6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Card.astro
Expand Up @@ -9,7 +9,7 @@ const { title, features, description } = Astro.props;
<div class="p-3">
<div class="flex justify-between items-center">
<div class="flex flex-row items-center gap-3 h-full grow">
<img src={`${title}.png`} class="rounded-xl aspect-square h-24" />
<img src={`/${title}.png`} class="rounded-xl aspect-square h-24" />
<div class="flex flex-col grow">
<div class="flex flex-row justify-between items-center">
<span class="uppercase font-semibold text-xl">{title}</span>
Expand Down

0 comments on commit 3bb8a6c

Please sign in to comment.