Laser stand

This commit is contained in:
2025-01-17 18:29:18 +00:00
parent 5f4e603524
commit 697cac363e
10 changed files with 41 additions and 78 deletions

View File

@@ -6,7 +6,6 @@ import Tag from "@components/Tag.astro";
import Datetime from "@components/Datetime";
import type { CollectionEntry } from "astro:content";
import { slugifyStr } from "@utils/slugify";
import ShareLinks from "@components/ShareLinks.astro";
import { SITE } from "@config";
import {render} from 'astro:content'
@@ -92,7 +91,7 @@ const nextPost =
</article>
<ul class="my-8">
{tags.map(tag => <Tag tag={slugifyStr(tag)} />)}
{tags.map(tag => <Tag tag={tag} />)}
</ul>
<div
@@ -110,7 +109,6 @@ const nextPost =
<span>Back to Top</span>
</button>
<ShareLinks />
</div>
<hr class="my-6 border-dashed" />