mirror of
https://github.com/documenso/documenso.git
synced 2025-11-14 00:32:43 +10:00
settings nav
This commit is contained in:
2
apps/web/pages/settings/account.tsx
Normal file
2
apps/web/pages/settings/account.tsx
Normal file
@ -0,0 +1,2 @@
|
||||
import SettingsPage from ".";
|
||||
export default SettingsPage;
|
||||
14
apps/web/pages/settings/index.tsx
Normal file
14
apps/web/pages/settings/index.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 SettingsPage: NextPageWithLayout = () => {
|
||||
return <Settings></Settings>;
|
||||
};
|
||||
|
||||
SettingsPage.getLayout = function getLayout(page: ReactElement) {
|
||||
return <Layout>{page}</Layout>;
|
||||
};
|
||||
|
||||
export default SettingsPage;
|
||||
2
apps/web/pages/settings/password.tsx
Normal file
2
apps/web/pages/settings/password.tsx
Normal file
@ -0,0 +1,2 @@
|
||||
import SettingsPage from ".";
|
||||
export default SettingsPage;
|
||||
2
apps/web/pages/settings/profile.tsx
Normal file
2
apps/web/pages/settings/profile.tsx
Normal file
@ -0,0 +1,2 @@
|
||||
import SettingsPage from ".";
|
||||
export default SettingsPage;
|
||||
Reference in New Issue
Block a user