[portal][ui] change app shell UI

This commit is contained in:
Yangshun Tay
2022-10-09 11:08:57 +08:00
parent 35d614e582
commit 8481ab1044
10 changed files with 218 additions and 90 deletions

View File

@ -0,0 +1,21 @@
import type { ProductNavigationItems } from '~/components/global/ProductNavigation';
const navigation: ProductNavigationItems = [
{
children: [
{ href: '/resumes', name: 'View Resumes' },
{ href: '/resumes/submit', name: 'Submit Resume' },
],
href: '#',
name: 'Resumes',
},
{ href: '/questions', name: 'Question Bank' },
{ href: '/offers', name: 'Offers' },
];
const config = {
navigation,
title: 'Tech Interview Handbook',
};
export default config;