Nuevo inicio del repositorio

This commit is contained in:
Mauricio Siu
2024-04-29 23:13:00 -06:00
commit 8dbf28c693
60 changed files with 13229 additions and 0 deletions

27
app/not-found.tsx Normal file
View File

@@ -0,0 +1,27 @@
import Link from "next/link";
// import { Button } from "../components/Button";
import { Logo } from "../components/shared/Logo";
import { SlimLayout } from "../components/SlimLayout";
export default function NotFound() {
return (
<SlimLayout>
<div className="flex">
<Link href="/" aria-label="Home">
<Logo className="h-10 w-auto" />
</Link>
</div>
<p className="mt-20 text-sm font-medium text-gray-700">404</p>
<h1 className="mt-3 text-lg font-semibold text-gray-900">
Page not found
</h1>
<p className="mt-3 text-sm text-gray-700">
Sorry, we couldnt find the page youre looking for.
</p>
{/* <Button href="/" className="mt-10">
Go back home
</Button> */}
</SlimLayout>
);
}