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,10 +1,20 @@
import Head from "next/head";
import type { ReactElement } from "react";
import Layout from "../components/layout";
import Settings from "../components/settings";
import type { NextPageWithLayout } from "./_app";
const DashboardPage: NextPageWithLayout = () => {
return <>This is the dashboard page.</>;
return (
<>
<Head>
<title>Dashboard | Documenso</title>
</Head>
<div>
<p>This is the dashboard page.</p>
</div>
</>
);
};
DashboardPage.getLayout = function getLayout(page: ReactElement) {