2023-12-04 06:41:36 +00:00
|
|
|
import { ReactElement } from "react";
|
2023-05-30 13:44:35 +00:00
|
|
|
// layouts
|
|
|
|
import DefaultLayout from "layouts/default-layout";
|
2023-07-17 07:30:44 +00:00
|
|
|
// components
|
2023-12-04 06:41:36 +00:00
|
|
|
import { SignInView } from "components/page-views";
|
|
|
|
// type
|
|
|
|
import { NextPageWithLayout } from "types/app";
|
2023-08-10 07:33:42 +00:00
|
|
|
|
2023-12-04 06:41:36 +00:00
|
|
|
const HomePage: NextPageWithLayout = () => <SignInView />;
|
2023-10-04 13:25:29 +00:00
|
|
|
|
2023-12-04 06:41:36 +00:00
|
|
|
HomePage.getLayout = function getLayout(page: ReactElement) {
|
|
|
|
return <DefaultLayout>{page}</DefaultLayout>;
|
2023-06-16 13:30:04 +00:00
|
|
|
};
|
2023-04-13 10:08:00 +00:00
|
|
|
|
2023-05-30 13:44:35 +00:00
|
|
|
export default HomePage;
|