settings nav

This commit is contained in:
Timur Ercan
2023-01-04 15:04:28 +01:00
parent 3587ac0707
commit b12ea36237
6 changed files with 41 additions and 11 deletions

View File

@ -0,0 +1,2 @@
import SettingsPage from ".";
export default SettingsPage;

View 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;

View File

@ -0,0 +1,2 @@
import SettingsPage from ".";
export default SettingsPage;

View File

@ -0,0 +1,2 @@
import SettingsPage from ".";
export default SettingsPage;