Files
documenso/apps/web/pages/index.tsx
2022-12-06 18:49:38 +01:00

13 lines
363 B
TypeScript

import type { ReactElement } from "react";
import Layout from "../components/layout";
import type { NextPageWithLayout } from "./_app";
const Page: NextPageWithLayout = () => {
return <p className="text-red-900">This is the index page</p>;
};
Page.getLayout = function getLayout(page: ReactElement) {
return <Layout>{page}</Layout>;
};
export default Page;