gatsby-plugin-github-ribbon

Add the "Fork me on Github" ribbon to your Gatsby Site.

Usage no npm install needed!

<script type="module">
  import gatsbyPluginGithubRibbon from 'https://cdn.skypack.dev/gatsby-plugin-github-ribbon';
</script>

README

gatsby-plugin-github-ribbon

npm npm

Add the Fork Me on Github Ribbon to any Gatsby site.

Install

$ npm install --save gatsby-plugin-github-ribbon

# or

$ yarn add gatsby-plugin-github-ribbon

How to Use

// In your gatsby-config.js
plugins: [
  {
    resolve: `gatsby-plugin-github-ribbon`,
    options: {
      project: `https://github.com/example/project`,
      color: `red`, //`red`, `green`, `darkblue`, `orange`, `gray`, or `white`.
      position: `left`, //`left` or `right`
    },
  },
];

Options

Position can be: left or right.

Color can be: red, green, darkblue, orange, gray, or white.