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