To install this theme, you will need a starter Gatsby site. Make sure you have Gatsby CLI installed.
Create a new site using Gatsby CLI:
gatsby new my-app https://github.com/gatsbyjs/gatsby-starter-hello-worldAbove will create a new site using a "Hello world starter from Gatsby"
Currently, the theme has no starter for itself so, you will need to install the theme manually.
In your my-app install the theme.
npm i git+https://github.com/ashiishme/gatsby-theme-terminal.gitOpen gatsby-config.js file & add the theme in the plugin array.
module.exports = {
...
plugins: [`gatsby-theme-terminal`],
}Delete the pages directory ( including the index.js file ) from src directory as everything will load from theme unless you want to override ( Theme shadowing )
gatsby developIt should load the terminal theme ready.
