[questions][chore] add dummy pages

pull/411/head
Jeff Sieu 3 years ago
parent f2962f5551
commit 57e1c4e9fb

@ -2,7 +2,7 @@ import type { ProductNavigationItems } from '~/components/global/ProductNavigati
const navigation: ProductNavigationItems = [ const navigation: ProductNavigationItems = [
{ href: '/questions/lists', name: 'My Lists' }, { href: '/questions/lists', name: 'My Lists' },
{ href: '/questions/my', name: 'My Questions' }, { href: '/questions/my-questions', name: 'My Questions' },
{ href: '/questions/history', name: 'History' }, { href: '/questions/history', name: 'History' },
]; ];

@ -0,0 +1,7 @@
export default function HistoryPage() {
return (
<div className="v-full flex w-full items-center justify-center">
<h1 className="text-center text-4xl font-bold">History</h1>
</div>
);
}

@ -0,0 +1,7 @@
export default function MyQuestionsPage() {
return (
<div className="v-full flex w-full items-center justify-center">
<h1 className="text-center text-4xl font-bold">My Questions</h1>
</div>
);
}
Loading…
Cancel
Save