4.19.0 • Published 3 years ago

gatsby-theme-katahdin v4.19.0

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

Katahdin

Quick Start

mkdir my-site
cd my-site
npm init
# install gatsby-theme-katahdin and it's dependencies
npm install gatsby react react-dom @lobster-marketing/gatsby-theme-katahdin

Then add the theme to your gatsby-config.js. We'll use the long-form here for educational purposes.

module.exports = {
  plugins: [
    {
      resolve: "@lobster-marketing/gatsby-theme-katahdin",
      options: {},
    },
  ],
}

That's it, you can now run your gatsby site using

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>My Site!</div>
}