add day 6

This commit is contained in:
Zoe
2022-09-28 22:00:34 -05:00
parent 76f93f24e3
commit 2df178410b
27 changed files with 4129 additions and 0 deletions

11
day6/src/layouts/404.ts Normal file
View File

@@ -0,0 +1,11 @@
import { RouterLink } from '../components/routerLink';
export default () => {
return `
<div class="grid place-items-center p-3 content-center min-h-screen">
<h1 class="text-4xl font-semibold">Looks like you're lost</h1>
<h3 class="text-xl font-semibold">${RouterLink('/', 'return home')}</h3>
</div>
`
}