/** * 根级 404 * * Server Component。覆盖未匹配路由(结合 `notFound()` 调用)。 * 不启用 v16 实验性 `global-not-found.js`,避免 `next.config.ts` 变更。 */ import Link from "next/link"; import { ROUTES } from "@/router/routes"; export default function NotFound() { return (

Page not found

The page you're looking for doesn't exist or has been moved.

Return to start
); }