init repo

This commit is contained in:
JIANG
2025-09-09 10:01:21 +08:00
commit d70d1709d3
34 changed files with 13652 additions and 0 deletions

15
src/app/not-found.tsx Normal file
View File

@@ -0,0 +1,15 @@
"use client";
import { Authenticated } from "@refinedev/core";
import { ErrorComponent } from "@refinedev/mui";
import { Suspense } from "react";
export default function NotFound() {
return (
<Suspense>
<Authenticated key="not-found">
<ErrorComponent />
</Authenticated>
</Suspense>
);
}