You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
435 B
14 lines
435 B
|
2 months ago
|
import React from "react";
|
||
|
|
|
||
|
|
export default function NotFound() {
|
||
|
|
return (
|
||
|
|
<div className="mx-auto max-w-screen-md px-4 py-20 text-center">
|
||
|
|
<h1 className="text-3xl font-semibold mb-2">页面不存在</h1>
|
||
|
|
<p className="text-gray-600 mb-6">您访问的页面可能已被移动或暂未上线。</p>
|
||
|
|
<a href="/" className="inline-block px-5 py-2.5 rounded bg-black text-white">返回首页</a>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
|