parent
d5f024f872
commit
1361c5bfab
@ -1,7 +1,16 @@
|
|||||||
|
import Head from 'next/head';
|
||||||
|
|
||||||
|
import { APP_TITLE } from '~/utils/questions/constants';
|
||||||
|
|
||||||
export default function HistoryPage() {
|
export default function HistoryPage() {
|
||||||
return (
|
return (
|
||||||
|
<>
|
||||||
|
<Head>
|
||||||
|
<title>History - {APP_TITLE}</title>
|
||||||
|
</Head>
|
||||||
<div className="v-full flex w-full items-center justify-center">
|
<div className="v-full flex w-full items-center justify-center">
|
||||||
<h1 className="text-center text-4xl font-bold">History</h1>
|
<h1 className="text-center text-4xl font-bold">History</h1>
|
||||||
</div>
|
</div>
|
||||||
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,16 @@
|
|||||||
|
import Head from 'next/head';
|
||||||
|
|
||||||
|
import { APP_TITLE } from '~/utils/questions/constants';
|
||||||
|
|
||||||
export default function MyQuestionsPage() {
|
export default function MyQuestionsPage() {
|
||||||
return (
|
return (
|
||||||
|
<>
|
||||||
|
<Head>
|
||||||
|
<title>My Questions - {APP_TITLE}</title>
|
||||||
|
</Head>
|
||||||
<div className="v-full flex w-full items-center justify-center">
|
<div className="v-full flex w-full items-center justify-center">
|
||||||
<h1 className="text-center text-4xl font-bold">My Questions</h1>
|
<h1 className="text-center text-4xl font-bold">My Questions</h1>
|
||||||
</div>
|
</div>
|
||||||
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in new issue