initial commit

This commit is contained in:
2022-03-16 16:30:43 +00:00
parent 57402cd040
commit 53ee49c722
394 changed files with 1509 additions and 83 deletions
+22
View File
@@ -0,0 +1,22 @@
// 404.js
import Image from "next/image";
import { useRouter } from "next/router";
const FourOhFour = (props) => {
const router = useRouter();
let numbWeeks = router.query.n;
return (
<div>
<Image
src={"/api/weeks/" + numbWeeks}
width="940"
height="788"
alt="weeks"
/>
</div>
);
};
export default FourOhFour;