From d5753dfbb3d0352cfb0e553c71e6d605e241c777 Mon Sep 17 00:00:00 2001 From: David Nguyen Date: Tue, 5 Sep 2023 18:08:29 +1000 Subject: [PATCH] feat: update marketing mobile menu --- .../src/components/(marketing)/mobile-navigation.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/apps/marketing/src/components/(marketing)/mobile-navigation.tsx b/apps/marketing/src/components/(marketing)/mobile-navigation.tsx index bc64e7f59..d32cd4af1 100644 --- a/apps/marketing/src/components/(marketing)/mobile-navigation.tsx +++ b/apps/marketing/src/components/(marketing)/mobile-navigation.tsx @@ -22,6 +22,10 @@ export const MENU_NAVIGATION_LINKS = [ href: '/pricing', text: 'Pricing', }, + { + href: '/open', + text: 'Open', + }, { href: 'https://status.documenso.com', text: 'Status', @@ -59,7 +63,7 @@ export const MobileNavigation = ({ isMenuOpen, onMenuOpenChange }: MobileNavigat initial="initial" animate="animate" transition={{ - staggerChildren: 0.2, + staggerChildren: 0.03, }} > {MENU_NAVIGATION_LINKS.map(({ href, text }) => ( @@ -75,6 +79,7 @@ export const MobileNavigation = ({ isMenuOpen, onMenuOpenChange }: MobileNavigat x: 0, transition: { duration: 0.5, + ease: 'backInOut', }, }, }}