pages and menus

This commit is contained in:
Timur Ercan
2022-12-08 16:04:22 +01:00
parent 08b6957b27
commit ca6fb819c8
5 changed files with 25 additions and 16 deletions

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 TeamPage: NextPageWithLayout = () => {
return <>This is the documents page</>;
};
TeamPage.getLayout = function getLayout(page: ReactElement) {
return <Layout>{page}</Layout>;
};
export default TeamPage;