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.

12345678910111213141516171819202122
  1. // app/not-found.tsx
  2. "use client";
  3. import Link from "next/link";
  4. import { Button, Result } from "antd";
  5. export default function NotFound() {
  6. return (
  7. <div className="flex justify-center items-center min-h-screen bg-white !w-full">
  8. <Result
  9. status="404"
  10. title="404"
  11. subTitle="Sorry, the page you visited does not exist."
  12. extra={
  13. <Link href="/user">
  14. <Button type="primary">Back Home</Button>
  15. </Link>
  16. }
  17. />
  18. </div>
  19. );
  20. }