1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

release 0.3.4

This commit is contained in:
songjunxi
2023-11-10 14:59:47 +08:00
parent 2b456637e9
commit 602f2059fd
161 changed files with 9921 additions and 347 deletions

View File

@@ -0,0 +1,50 @@
"use client";
import Image from "next/image";
import Link from "next/link";
export default function UINotFound() {
return (
<>
<div className="z-10 mx-auto mt-24 flex w-full max-w-xl flex-col items-center justify-center px-5">
<Image
src="/cat.png"
alt="404"
width="250"
height="250"
className="ml-4 rounded-sm"
priority
/>
<Link
href="/"
className="mt-24 rounded-md border px-4 py-2 text-sm hover:border-gray-800"
>
Oops, Cat Not Found!
</Link>
</div>
</>
);
}
export function NoteNotFound() {
return (
<>
<div className="z-10 mx-auto mt-24 flex w-full max-w-xl flex-col items-center justify-center px-5">
<Image
src="/cat.png"
alt="404"
width="250"
height="250"
className="ml-4 rounded-sm"
priority
/>
<Link
href="/"
className="mt-24 rounded-md border px-4 py-2 text-sm hover:border-gray-800"
>
Oops, Cat Not Found!
</Link>
</div>
</>
);
}