Files
2022-10-09 12:24:41 +08:00

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;