Skip to content

Instantly share code, notes, and snippets.

@saigowthamr
Created April 4, 2018 05:41
Show Gist options
  • Select an option

  • Save saigowthamr/3b40cf232ab1c96527a0f2704ff2c1d7 to your computer and use it in GitHub Desktop.

Select an option

Save saigowthamr/3b40cf232ab1c96527a0f2704ff2c1d7 to your computer and use it in GitHub Desktop.
import React from 'react'
import Link from 'gatsby-link'
import Helmet from 'react-helmet'
export default () => (
<div>
<Helmet
title="Intro to the gatsby"
meta={[
{ name: 'description', content: 'Simple inro to gatsby' },
{ name: 'keywords', content: 'intro, gatsby,react,static' },
]}
/>
Welcome to the gatsby intro page
<hr />
<Link to="/">Move to Home</Link>
</div>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment