diff --git a/apps/marketing/src/components/(marketing)/footer.tsx b/apps/marketing/src/components/(marketing)/footer.tsx index 11d368c22..17cf771df 100644 --- a/apps/marketing/src/components/(marketing)/footer.tsx +++ b/apps/marketing/src/components/(marketing)/footer.tsx @@ -28,7 +28,7 @@ const FOOTER_LINKS = [ { href: '/open', text: 'Open' }, { href: 'https://shop.documenso.com', text: 'Shop', target: '_blank' }, { href: 'https://status.documenso.com', text: 'Status', target: '_blank' }, - { href: 'mailto:support@documenso.com', text: 'Support' }, + { href: 'mailto:support@documenso.com', text: 'Support', target: '_blank' }, { href: '/privacy', text: 'Privacy' }, ]; diff --git a/apps/marketing/src/components/(marketing)/mobile-navigation.tsx b/apps/marketing/src/components/(marketing)/mobile-navigation.tsx index a1897ce58..6096556a6 100644 --- a/apps/marketing/src/components/(marketing)/mobile-navigation.tsx +++ b/apps/marketing/src/components/(marketing)/mobile-navigation.tsx @@ -39,6 +39,7 @@ export const MENU_NAVIGATION_LINKS = [ { href: 'mailto:support@documenso.com', text: 'Support', + target: '_blank', }, { href: '/privacy', @@ -78,7 +79,7 @@ export const MobileNavigation = ({ isMenuOpen, onMenuOpenChange }: MobileNavigat staggerChildren: 0.03, }} > - {MENU_NAVIGATION_LINKS.map(({ href, text }) => ( + {MENU_NAVIGATION_LINKS.map(({ href, text, target }) => ( handleMenuItemClick()} + target={target} > {text}