chore: update dependencies and style

This commit is contained in:
radishzzz 2025-03-08 23:50:41 +00:00
parent d6cff842e1
commit 4fc12b804c
8 changed files with 25 additions and 22 deletions

View file

@ -52,18 +52,16 @@ const { Content, remarkPluginFrontmatter } = await post.render()
<!-- Tags -->
{post.data.tags && post.data.tags.length > 0 && (
<div class="mb-16">
<div class="uno-decorative-line"></div>
<div class="uno-tags-wrapper">
{post.data.tags.map(tag => (
<a
href={`/tags/${tag}/`}
class="uno-tags-style"
>
{tag}
</a>
))}
</div>
<div class="uno-decorative-line"></div>
<div class="uno-tags-wrapper">
{post.data.tags.map(tag => (
<a
href={`/tags/${tag}/`}
class="uno-tags-style"
>
{tag}
</a>
))}
</div>
)}