1.0.6 • Published 2 years ago

gatsby-theme-monitaur v1.0.6

Weekly downloads
3
License
MIT
Repository
github
Last release
2 years ago

The Monitaur Gatsby theme

Quick Start

mkdir my-site
cd my-site
yarn init
# install gatsby-theme-monitaur and it's dependencies
yarn add gatsby react react-dom gatsby-theme-monitaur

Then add the theme to your gatsby-config.js.

module.exports = {
  plugins: [
    {
      resolve: "gatsby-theme-monitaur",
      options: {},
    },
  ],
}
yarn gatsby develop

Note that this site doesn't do anything, so you're seeing a missing resources error. Create a simple page in src/pages/index.js to see a page on the root url.

import React from "react"

export default function Home() {
  return <div>Monitaur Site!</div>
}