mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 15:53:02 +10:00
menu animation
This commit is contained in:
14
apps/web/pages/dashboard.tsx
Normal file
14
apps/web/pages/dashboard.tsx
Normal file
@ -0,0 +1,14 @@
|
||||
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.</>;
|
||||
};
|
||||
|
||||
DashboardPage.getLayout = function getLayout(page: ReactElement) {
|
||||
return <Layout>{page}</Layout>;
|
||||
};
|
||||
|
||||
export default DashboardPage;
|
||||
Reference in New Issue
Block a user