From af39f8f335df90ac3343d58c412f7ddb287f7411 Mon Sep 17 00:00:00 2001 From: Rufus Pollock Date: Thu, 17 Jun 2021 17:12:41 +0200 Subject: [PATCH] [site/nav][xs]: tweak order of nav and remove home link as logo links to home. --- docs/components/Nav/index.jsx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/components/Nav/index.jsx b/docs/components/Nav/index.jsx index d59dc6b7..7c9ebd7b 100644 --- a/docs/components/Nav/index.jsx +++ b/docs/components/Nav/index.jsx @@ -8,11 +8,12 @@ export default function Nav() { setOpen(!open); }; - const navMenu = [{ title: 'Home', path: '/' }, - { title: 'Gallery', path: '/gallery' }, - { title: 'Docs', path: '/docs' }, - { title: 'Learn', path: '/learn' }, - { title: 'Github', path: 'https://github.com/datopian/portal.js' }] + const navMenu = [ + { title: 'Docs', path: '/docs' }, + { title: 'Learn', path: '/learn' }, + { title: 'Gallery', path: '/gallery' }, + { title: 'Github', path: 'https://github.com/datopian/portal.js' } + ] return (