page titles and nav

This commit is contained in:
Timur Ercan
2023-01-04 16:28:32 +01:00
parent 963c73ff14
commit 95b0696e71
5 changed files with 30 additions and 5 deletions

View File

@ -1,8 +1,12 @@
import Head from "next/head";
import Login from "../components/login";
export default function LoginPage() {
return (
<>
<Head>
<title>Login | Documenso</title>
</Head>
<Login></Login>
</>
);