Files
documenso/apps/web/pages/dashboard.tsx
2023-01-04 16:28:32 +01:00

25 lines
574 B
TypeScript

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 (
<>
<Head>
<title>Dashboard | Documenso</title>
</Head>
<div>
<p>This is the dashboard page.</p>
</div>
</>
);
};
DashboardPage.getLayout = function getLayout(page: ReactElement) {
return <Layout>{page}</Layout>;
};
export default DashboardPage;