lingjing/app/not-found.jsx
2026-02-23 09:51:43 +00:00

15 lines
351 B
JavaScript

import Link from 'next/link';
import Shell from '../components/Shell';
export default function NotFound() {
return (
<Shell title="页面走丢了" subtitle="这个入口暂时不存在。">
<div className="card p-6">
<Link href="/" className="btn-primary">
返回首页
</Link>
</div>
</Shell>
);
}