app shell

This commit is contained in:
Timur Ercan
2022-12-06 14:51:03 +01:00
parent f850729356
commit 2c400576b4
13 changed files with 5518 additions and 169 deletions

View File

@ -3,7 +3,7 @@ import Layout from "../components/layout";
import type { NextPageWithLayout } from "./_app";
const Page: NextPageWithLayout = () => {
return <p>hello world</p>;
return <p className="text-red-900">This is the index page</p>;
};
Page.getLayout = function getLayout(page: ReactElement) {