mirror of
https://github.com/documenso/documenso.git
synced 2025-11-18 02:32:00 +10:00
23 lines
529 B
TypeScript
23 lines
529 B
TypeScript
import Head from "next/head";
|
|
import { ReactElement } from "react";
|
|
import Layout from "../../../components/layout";
|
|
import Logo from "../../../components/logo";
|
|
import { NextPageWithLayout } from "../../_app";
|
|
|
|
const SignPage: NextPageWithLayout = () => {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>Sign | Documenso</title>
|
|
</Head>
|
|
Hello, please sign at the dotted line.
|
|
</>
|
|
);
|
|
};
|
|
|
|
SignPage.getLayout = function getLayout(page: ReactElement) {
|
|
return <Layout>{page}</Layout>;
|
|
};
|
|
|
|
export default SignPage;
|