Personal Site
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove trippling of post count

+2 -2
+2 -2
src/components/home/Blog.astro
··· 3 3 4 4 import BoxTlbr from "/assets/box-tlbr.png"; 5 5 import Hr from "/assets/hr.png"; 6 - import Box2x1Mask from "/assets/box-2x1-mask.png" 6 + import Box2x1Mask from "/assets/box-2x1-mask.png"; 7 7 8 8 const posts = await getCollection("blog"); 9 9 --- ··· 18 18 > 19 19 <h2>Blog Posts</h2> 20 20 { 21 - [...posts, ...posts, ...posts].map((post) => ( 21 + posts.map((post) => ( 22 22 <article class="post"> 23 23 <a href={`/blog/${post.id}`}> 24 24 {import(