feat: update marketing mobile menu

This commit is contained in:
David Nguyen
2023-09-05 18:08:29 +10:00
committed by Mythie
parent a644e0134b
commit d5753dfbb3

View File

@ -22,6 +22,10 @@ export const MENU_NAVIGATION_LINKS = [
href: '/pricing', href: '/pricing',
text: 'Pricing', text: 'Pricing',
}, },
{
href: '/open',
text: 'Open',
},
{ {
href: 'https://status.documenso.com', href: 'https://status.documenso.com',
text: 'Status', text: 'Status',
@ -59,7 +63,7 @@ export const MobileNavigation = ({ isMenuOpen, onMenuOpenChange }: MobileNavigat
initial="initial" initial="initial"
animate="animate" animate="animate"
transition={{ transition={{
staggerChildren: 0.2, staggerChildren: 0.03,
}} }}
> >
{MENU_NAVIGATION_LINKS.map(({ href, text }) => ( {MENU_NAVIGATION_LINKS.map(({ href, text }) => (
@ -75,6 +79,7 @@ export const MobileNavigation = ({ isMenuOpen, onMenuOpenChange }: MobileNavigat
x: 0, x: 0,
transition: { transition: {
duration: 0.5, duration: 0.5,
ease: 'backInOut',
}, },
}, },
}} }}