// Packages import React from 'react'; import css from 'next/css'; // Components import Anchor from '../common/Anchor'; export default () => ( ); const navbarStyle = css({ margin: '0 auto', padding: '30px 0', width: '420px', '@media (max-width: 500px)': { width: '300px' }, '@media (max-width: 300px)': { width: 'auto' } }); const listStyle = css({ overflow: 'auto' }); const listItemStyle = css({ float: 'left', listStyleType: 'none', margin: '0 30px', textAlign: 'center', width: '60px', '@media (max-width: 500px)': { margin: '0 10px' }, '@media (max-width: 300px)': { margin: '15px 0', width: '100%' } }); const noMarginRight = css({ marginRight: '0' }); const noMarginLeft = css({ marginLeft: '0' });