diff --git a/docs/components/Footer/index.jsx b/docs/components/Footer/index.jsx index 2547ecf8..071d507c 100644 --- a/docs/components/Footer/index.jsx +++ b/docs/components/Footer/index.jsx @@ -1,16 +1,16 @@ import styles from '../../styles/Home.module.css' export default function Footer() { - return ( - - ) + return ( + + ) } diff --git a/docs/components/Nav/index.jsx b/docs/components/Nav/index.jsx index 9f05b4a9..784d1be7 100644 --- a/docs/components/Nav/index.jsx +++ b/docs/components/Nav/index.jsx @@ -2,47 +2,47 @@ import { useState } from 'react' import Link from 'next/link' export default function Nav() { - const [open, setOpen] = useState(false); - const handleClick = (event) => { - event.preventDefault(); - setOpen(!open); - }; + const [open, setOpen] = useState(false); + const handleClick = (event) => { + event.preventDefault(); + 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: 'Home', path: '/' }, + { title: 'Gallery', path: '/gallery' }, + { title: 'Docs', path: '/docs' }, + { title: 'Learn', path: '/learn' }, + { title: 'Github', path: 'https://github.com/datopian/portal.js' }] - return ( - - ) + return ( + + ) }