gatsby theme terminal

A Gatsby theme for techies who love terminal / command line / bash like portfolio.

16
3
TypeScript
gatsby theme terminal icon

Gatsby Theme Terminal

A Gatsby theme for techies who love terminal / command line / bash like portfolio.

whoami

Installation

To install this theme, you will need a starter Gatsby site. Make sure you have Gatsby CLI installed.

Getting started with Gatsby

Create a new site using Gatsby CLI:

gatsby new my-app https://github.com/gatsbyjs/gatsby-starter-hello-world

Above 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.

Install Terminal theme

In your my-app install the theme.

npm i git+https://github.com/ashiishme/gatsby-theme-terminal.git

Configure starter site to use Terminal theme

Open 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 )

Run the project

gatsby develop

It should load the terminal theme ready.