plane/web/pages/index.tsx

16 lines
429 B
TypeScript
Raw Normal View History

import { ReactElement } from "react";
// layouts
2024-03-19 14:38:35 +00:00
import { SignInView } from "@/components/page-views";
import DefaultLayout from "@/layouts/default-layout";
// components
// type
2024-03-19 14:38:35 +00:00
import { NextPageWithLayout } from "@/lib/types";
const HomePage: NextPageWithLayout = () => <SignInView />;
HomePage.getLayout = function getLayout(page: ReactElement) {
return <DefaultLayout>{page}</DefaultLayout>;
};
2022-11-19 14:21:26 +00:00
export default HomePage;