mirror of
https://github.com/documenso/documenso.git
synced 2025-11-16 17:51:49 +10:00
page titles and nav
This commit is contained in:
@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user