mirror of
https://github.com/yangshun/tech-interview-handbook.git
synced 2025-07-28 20:52:00 +08:00
[portal][ui] change app shell UI
This commit is contained in:
21
apps/portal/src/components/global/HomeNavigation.ts
Normal file
21
apps/portal/src/components/global/HomeNavigation.ts
Normal 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;
|
Reference in New Issue
Block a user