diff --git a/packages/web/components/templates/Menu.tsx b/packages/web/components/templates/Menu.tsx index ab514dc0b..c4fb9bcc1 100644 --- a/packages/web/components/templates/Menu.tsx +++ b/packages/web/components/templates/Menu.tsx @@ -5,6 +5,15 @@ import { styled } from '../tokens/stitches.config' import { ProSidebar, Menu, MenuItem } from 'react-pro-sidebar' import 'react-pro-sidebar/dist/css/styles.css' +// Styles-------------------------------- + +const MenuStyle = styled(ProSidebar, { + display: 'inline-block', + //override background to match the design? +}) + +// Functions------------------------------ + const calculateTodayMenuItem = () => { const timeZoneHourDiff = -new Date().getTimezoneOffset() / 60 // console.log(timeZoneHourDiff.toLocaleString('en-US', { @@ -16,15 +25,10 @@ const calculateTodayMenuItem = () => { return hrefStr } + export const Menubar = () => { return ( - + @@ -45,13 +49,12 @@ export const Menubar = () => { Highlights - Newsletters - + ) }