Start building a "normal" page

This commit is contained in:
2022-09-30 16:14:30 +02:00
parent a4fe9477c8
commit aab77d8352
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,7 @@
import type { NextPage } from "next";
const Navigation: NextPage<{}> = () => {
return <></>;
};
export default Navigation;