7 lines
600 B
TypeScript
7 lines
600 B
TypeScript
import Link from "next/link";
|
||
import { BrandIcon } from "@/components/brand-icon";
|
||
|
||
export default function NotFound() {
|
||
return <div className="container-shell flex min-h-[560px] flex-col items-center justify-center py-20 text-center"><p className="eyebrow">404 / Not found</p><h1 className="mt-6 text-5xl font-semibold tracking-[-0.06em]">这条路径还没有内容。</h1><p className="mt-5 max-w-md text-sm leading-7 text-muted">页面不存在,或内容仍在准备中。返回首页继续浏览。</p><Link className="button-primary mt-8" href="/"><BrandIcon />返回首页</Link></div>;
|
||
}
|