diff --git a/src/components/Summary.astro b/src/components/Summary.astro index 00a9741..45416f5 100644 --- a/src/components/Summary.astro +++ b/src/components/Summary.astro @@ -27,11 +27,13 @@ const { url, date, title, tags, description } = Astro.props;
-

- { title } -

- - { tags.join(" ")} +

{ title }

+ + {tags.map((tag) => ( + + { tag } + + ))}
{ description }