login draft

This commit is contained in:
Timur Ercan
2022-12-06 19:16:34 +01:00
parent 97bae407f8
commit e9979a2c64
7 changed files with 144 additions and 18 deletions

View File

@ -0,0 +1,14 @@
import type { ReactElement } from "react";
import Layout from "../../components/layout";
import Settings from "../../components/settings";
import type { NextPageWithLayout } from "../_app";
const DocumentDetailPage: NextPageWithLayout = () => {
return <p>this is the document page.</p>;
};
DocumentDetailPage.getLayout = function getLayout(page: ReactElement) {
return <Layout>{page}</Layout>;
};
export default DocumentDetailPage;