mirror of
https://github.com/yangshun/tech-interview-handbook.git
synced 2025-07-28 12:43:12 +08:00
16 lines
368 B
TypeScript
16 lines
368 B
TypeScript
import type { ProductNavigationItems } from '~/components/global/ProductNavigation';
|
|
|
|
const navigation: ProductNavigationItems = [
|
|
{ href: '/questions', name: 'Home' },
|
|
{ href: '#', name: 'My Lists' },
|
|
{ href: '#', name: 'My Questions' },
|
|
{ href: '#', name: 'History' },
|
|
];
|
|
|
|
const config = {
|
|
navigation,
|
|
title: 'Questions Bank',
|
|
};
|
|
|
|
export default config;
|