You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
717 B
27 lines
717 B
import type { ProductNavigationItems } from '~/components/global/ProductNavigation';
|
|
|
|
const navigation: ProductNavigationItems = [
|
|
{ href: '/questions/browse', name: 'Browse' },
|
|
{ href: '/questions/lists', name: 'My Lists' },
|
|
{ href: '/questions/about', name: 'About' },
|
|
// { href: '/questions/my-questions', name: 'My Questions' },
|
|
// { href: '/questions/history', name: 'History' },
|
|
];
|
|
|
|
const config = {
|
|
googleAnalyticsMeasurementID: 'G-0T4LYWMK8L',
|
|
logo: (
|
|
<img
|
|
alt="Questions Bank"
|
|
className="h-8 w-auto"
|
|
src="/logos/bank-logo.png"
|
|
/>
|
|
),
|
|
navigation,
|
|
showGlobalNav: false,
|
|
title: 'Tech Interview Question Bank',
|
|
titleHref: '/questions',
|
|
};
|
|
|
|
export default config;
|