From 5df4d34780e6d0b5f00eb17a3adfbe0b694d6929 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Schr=C3=B6ter?= Date: Mon, 1 Aug 2022 22:03:57 +0200 Subject: [PATCH] fix: fix link --- src/pages/blog/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/blog/index.tsx b/src/pages/blog/index.tsx index e4d1798..6418313 100644 --- a/src/pages/blog/index.tsx +++ b/src/pages/blog/index.tsx @@ -1,5 +1,5 @@ import * as React from "react" -import { graphql, PageProps } from "gatsby" +import { graphql, Link, PageProps } from "gatsby" import Layout from "../../components/organisms/Layout" const Blog = ({ data: { allMdx } }: PageProps) => { @@ -7,9 +7,9 @@ const Blog = ({ data: { allMdx } }: PageProps) => { return ( {allMdx.edges.map(({ node: post }) => ( - +

{post.frontmatter?.title}

-
+ ))}
)