feat: add global 404 page

This commit is contained in:
xfy
2025-05-19 20:09:20 +08:00
parent 39089feea8
commit 7b6bf536ea
10 changed files with 48 additions and 13 deletions

12
lib/image.ts Normal file
View File

@ -0,0 +1,12 @@
// [TODO]
export default function imageProcess({
src,
width,
quality,
}: {
src: string;
width: number;
quality?: number;
}) {
return `/${src}`;
}