Skip to content

Instantly share code, notes, and snippets.

@siisee11
Created January 5, 2020 12:10
Show Gist options
  • Save siisee11/b08c66c5e1050e9c3cfaac3ccef937e7 to your computer and use it in GitHub Desktop.
Save siisee11/b08c66c5e1050e9c3cfaac3ccef937e7 to your computer and use it in GitHub Desktop.
Medium
import React from "react"
import { graphql } from "gatsby"
import Layout from "../components/layout"
export default ({ data }) => (
<Layout>
<h1>About {data.site.siteMetadata.title}</h1>
<p>
We're the only site running on your computer dedicated to showing the best
photos and videos of pandas eating lots of food.
</p>
</Layout>
)
export const query = graphql`
query {
site {
siteMetadata {
title
}
}
}
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment