remove unecessary components

This commit is contained in:
2025-04-21 19:29:01 -03:00
parent 7a026d09d9
commit c9b5f94bba
14 changed files with 43 additions and 169 deletions

View File

@@ -9,14 +9,13 @@ let posts = await res.json()
<Layout>
<Container>
{
posts.map((post) => (
<article>
<h2>
<a href={`/blog/${post.slug}`} set:html={post.title.rendered} />
</h2>
<!-- <Fragment set:html={post.content.rendered} /> -->
</article>
))
posts.map((post) => (
<article>
<h2>
<a href={`/blog/${post.slug}`} set:html={post.title.rendered} />
</h2>
</article>
))
}
</Container>
</Layout>