Skip to content

Latest commit

 

History

History
43 lines (35 loc) · 732 Bytes

index.mdx

File metadata and controls

43 lines (35 loc) · 732 Bytes

import { Link, graphql } from 'gatsby'

Hey 👋

Welcome to my blog, this is an initial early version of the site.

Its built with awesome tools like:

  • gatsby
  • mdx
  • react-live
  • and emotion

Expect to see more content showing up here as I migrate it over from my previous site!

Blog Posts

    {props.data.allMdx.edges.map(({ node }) => (
  • {node.frontmatter.title}
  • ))}

export const pageQuery = graphqlquery blogIndex { allMdx { edges { node { id excerpt frontmatter { title } fields { slug } } } } }