Skip to content

Commit

Permalink
Flip gist tags and published at
Browse files Browse the repository at this point in the history
Tags are more visually significant, but also more important
  • Loading branch information
MartijnHols committed Dec 8, 2024
1 parent ca14dca commit bd14dea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/GistCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,14 +133,14 @@ const GistCard = ({ gist }: Props) => (
<ArticleTitle>{gist.title}</ArticleTitle>
<p>{gist.description}</p>
<ArticleMetadata>
<PublishedAt>
Published <PublicationDate date={gist.publishedAt} />
</PublishedAt>
<Tags>
{gist.tags.map((tag) => (
<Tag key={tag}>{tag}</Tag>
))}
</Tags>
<PublishedAt>
Published <PublicationDate date={gist.publishedAt} />
</PublishedAt>
</ArticleMetadata>
</Article>
</ArticleLink>
Expand Down

0 comments on commit bd14dea

Please sign in to comment.