mirror of
https://github.com/documenso/documenso.git
synced 2025-11-22 20:51:33 +10:00
login draft
This commit is contained in:
14
apps/web/pages/documents/[id].tsx
Normal file
14
apps/web/pages/documents/[id].tsx
Normal 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;
|
||||
9
apps/web/pages/login.tsx
Normal file
9
apps/web/pages/login.tsx
Normal file
@ -0,0 +1,9 @@
|
||||
import Login from "../components/login";
|
||||
|
||||
export default function LoginPage() {
|
||||
return (
|
||||
<>
|
||||
<Login></Login>
|
||||
</>
|
||||
);
|
||||
}
|
||||
0
apps/web/pages/signup.tsx
Normal file
0
apps/web/pages/signup.tsx
Normal file
Reference in New Issue
Block a user