码桶
发现社区成员的开源项目
NotFound.tsx510 B
import { Link } from 'react-router-dom'
import { Button } from '@/components/ui/button'
export default function NotFound() {
return (
<div className="flex min-h-screen flex-col items-center justify-center gap-4 bg-muted/30 text-center">
<div className="text-6xl font-bold text-muted-foreground">404</div>
<p className="text-muted-foreground">页面不存在或已被移动</p>
<Button asChild>
<Link to="/">返回控制台</Link>
</Button>
</div>
)
}