17 lines
406 B
17 lines
406 B
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;
|