mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
14 lines
239 B
TypeScript
14 lines
239 B
TypeScript
import Head from "next/head";
|
|
import Signup from "../components/signup";
|
|
|
|
export default function SignupPage() {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>Signup | Documenso</title>
|
|
</Head>
|
|
<Signup></Signup>
|
|
</>
|
|
);
|
|
}
|