fix(blog): add trailing slash to links

This commit is contained in:
Jewgeni Lewash 2024-03-08 08:30:20 +01:00
parent e963a3f670
commit 22f9623c62

View File

@ -26,7 +26,7 @@ const allBlogposts = await getCollection('blog');
</p> </p>
<a <a
class="text-sm font-medium text-primary-600 hover:text-primary-400 dark:text-primary-400 dark:hover:text-primary-300" class="text-sm font-medium text-primary-600 hover:text-primary-400 dark:text-primary-400 dark:hover:text-primary-300"
href={`/blog/${post.slug}`}> href={`/blog/${post.slug}/`}>
Read more Read more
</a> </a>
</div> </div>