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.

18 lines
661 B

import Link from "next/link";
import { PrimaryButton } from "@/components/ui/primary-button";
export default function NotFound() {
return (
<div className="flex min-h-[100dvh] flex-col items-center justify-center bg-bg px-4 text-center">
<p className="text-6xl font-semibold text-text-disabled">404</p>
<h1 className="mt-4 text-xl font-semibold text-text-primary"></h1>
<p className="mt-2 text-sm text-text-secondary">
访
</p>
<Link href="/" className="mt-6">
<PrimaryButton type="button"></PrimaryButton>
</Link>
</div>
);
}