2023-11-02 18:27:44 +00:00
|
|
|
import { ReactElement } from "react";
|
2023-05-30 13:44:35 +00:00
|
|
|
// layouts
|
2024-03-19 14:38:35 +00:00
|
|
|
import { SignInView } from "@/components/page-views";
|
|
|
|
import DefaultLayout from "@/layouts/default-layout";
|
2023-07-17 07:30:44 +00:00
|
|
|
// components
|
2023-11-02 18:27:44 +00:00
|
|
|
// type
|
2024-03-19 14:38:35 +00:00
|
|
|
import { NextPageWithLayout } from "@/lib/types";
|
2023-08-10 07:33:42 +00:00
|
|
|
|
2023-11-02 18:27:44 +00:00
|
|
|
const HomePage: NextPageWithLayout = () => <SignInView />;
|
|
|
|
|
|
|
|
HomePage.getLayout = function getLayout(page: ReactElement) {
|
|
|
|
return <DefaultLayout>{page}</DefaultLayout>;
|
|
|
|
};
|
2022-11-19 14:21:26 +00:00
|
|
|
|
2023-05-30 13:44:35 +00:00
|
|
|
export default HomePage;
|