[portal][ui] make product navigation appear in mobile menu

This commit is contained in:
Yangshun Tay
2022-10-09 13:51:22 +08:00
parent 8481ab1044
commit 3ccea65d2a
5 changed files with 223 additions and 172 deletions

View File

@ -1,6 +1,8 @@
import type { ProductNavigationItems } from '~/components/global/ProductNavigation';
const navigation: ProductNavigationItems = [
{ href: '/offers', name: 'Offers' },
{ href: '/questions', name: 'Question Bank' },
{
children: [
{ href: '/resumes', name: 'View Resumes' },
@ -9,8 +11,6 @@ const navigation: ProductNavigationItems = [
href: '#',
name: 'Resumes',
},
{ href: '/questions', name: 'Question Bank' },
{ href: '/offers', name: 'Offers' },
];
const config = {