plane/web/pages/index.tsx

14 lines
283 B
TypeScript
Raw Normal View History

import type { NextPage } from "next";
// layouts
import DefaultLayout from "layouts/default-layout";
// components
2023-10-10 07:01:40 +00:00
import { SignInView } from "components/views";
2023-10-10 07:01:40 +00:00
const HomePage: NextPage = () => (
<DefaultLayout>
<SignInView />
</DefaultLayout>
);
2022-11-19 14:21:26 +00:00
export default HomePage;