mirror of
https://github.com/documenso/documenso.git
synced 2025-11-18 18:51:37 +10:00
14 lines
364 B
TypeScript
14 lines
364 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;
|