mirror of
https://github.com/yangshun/tech-interview-handbook.git
synced 2026-04-24 10:32:01 +08:00
17 lines
406 B
TypeScript
17 lines
406 B
TypeScript
import type { ProductNavigationItems } from '~/components/global/ProductNavigation';
|
|
|
|
const navigation: ProductNavigationItems = [
|
|
{ href: '/questions', name: 'My Lists' },
|
|
{ href: '/questions', name: 'My Questions' },
|
|
{ href: '/questions', name: 'History' },
|
|
];
|
|
|
|
const config = {
|
|
navigation,
|
|
showGlobalNav: false,
|
|
title: 'Questions Bank',
|
|
titleHref: '/questions',
|
|
};
|
|
|
|
export default config;
|