Files
Zhang Ziqing e62c2ae50f [offers][feat] add event tracking and save to profile in submisison page (#465)
* [offers][feat] add event tracking and save to profile in form

* [offers][refactor] refactor feature page

* [offers][fix] fix offer table border for action column
2022-10-31 01:58:54 +08:00

31 lines
855 B
TypeScript

import type { ProductNavigationItems } from '~/components/global/ProductNavigation';
const navigation: ProductNavigationItems = [
{ href: '/offers/submit', name: 'Analyze your offers' },
{ href: '/offers/features', name: 'Features' },
];
const navigationAuthenticated: ProductNavigationItems = [
{ href: '/offers/submit', name: 'Analyze your offers' },
{ href: '/offers/dashboard', name: 'Your repository' },
{ href: '/offers/features', name: 'Features' },
];
const config = {
googleAnalyticsMeasurementID: 'G-34XRGLEVCF',
logo: (
<img alt="Tech Offers Repo" className="h-8 w-auto" src="/offers-logo.svg" />
),
navigation,
showGlobalNav: false,
title: 'Tech Offers Repo',
titleHref: '/offers',
};
export const OffersNavigationAuthenticated = {
...config,
navigation: navigationAuthenticated,
};
export default config;