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}

-
+ ))}
)