diff options
Diffstat (limited to 'src/pages/Blog.tsx')
| -rw-r--r-- | src/pages/Blog.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pages/Blog.tsx b/src/pages/Blog.tsx index 42e2716..47b44d6 100644 --- a/src/pages/Blog.tsx +++ b/src/pages/Blog.tsx @@ -28,7 +28,7 @@ export default function Blog() { <h1 className="text-4xl font-bold mb-8">Blog</h1> {posts.map((post) => ( - <a key={post.slug} href={`/blog/${post.slug}`} className="block"> + <a key={post.slug} href={`/blog/${post.slug}`} className="block py-1"> <CardLink title={post.title} body={post.excerpt} @@ -38,4 +38,4 @@ export default function Blog() { ))} </section> ); -}
\ No newline at end of file +} |
