mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 15:53:02 +10:00
13 lines
363 B
TypeScript
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; |