diff --git a/.all-contributorsrc b/.all-contributorsrc
index 6f4f04e7..b6c6ba53 100644
--- a/.all-contributorsrc
+++ b/.all-contributorsrc
@@ -1059,6 +1059,15 @@
"contributions": [
"code"
]
+ },
+ {
+ "login": "zebapy",
+ "name": "Zeb Pykosz",
+ "avatar_url": "https://avatars1.githubusercontent.com/u/2199845?v=4",
+ "profile": "https://zeb.codes",
+ "contributions": [
+ "doc"
+ ]
}
],
"repoType": "github"
diff --git a/README.md b/README.md
index 54eff5aa..34fee1b1 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
# Netlify CMS
-[![All Contributors](https://img.shields.io/badge/all_contributors-120-orange.svg)](#contributors)
+[![All Contributors](https://img.shields.io/badge/all_contributors-121-orange.svg)](#contributors)
[![Open Source Helpers](https://www.codetriage.com/netlify/netlify-cms/badges/users.svg)](https://www.codetriage.com/netlify/netlify-cms)
[![](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/netlify/netlifycms)
diff --git a/website/src/components/mobile-nav.js b/website/src/components/mobile-nav.js
index 5da281d4..27a58ae9 100644
--- a/website/src/components/mobile-nav.js
+++ b/website/src/components/mobile-nav.js
@@ -1,26 +1,49 @@
import React, { Component } from 'react';
+import { Link } from 'gatsby';
class MobileNav extends Component {
- handleChange = event => {
- this.props.history.push(event.target.value);
+ state = {
+ isOpen: false,
+ };
+ toggleNav = () => {
+ this.setState({
+ isOpen: !this.state.isOpen,
+ });
};
render() {
const { items } = this.props;
+ const { isOpen } = this.state;
return (
-
-