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 1b20e89..27a21c4 100644 --- a/src/pages/Blog.tsx +++ b/src/pages/Blog.tsx @@ -29,13 +29,13 @@ export default function Blog() { <h1 className="text-4xl font-bold mb-8">Blog</h1> {posts.map((post) => ( - <Link key={post.slug} to={`/blog/${post.slug}`} className="block"> + <a key={post.slug} href={`/blog/${post.slug}`} className="block"> <CardLink title={post.title} body={post.excerpt} imgSrc={post.cover} /> - </Link> + </a> ))} </section> ); |
