tiefen_space_web/app/not-found.jsx

19 lines
543 B
React
Raw Permalink Normal View History

2024-01-03 01:07:16 +08:00
import React from "react";
import Link from "next/link";
export default function NotFound() {
return (
<section className="flex flex-col container items-center">
2024-06-14 23:34:23 +08:00
<img
2024-01-03 01:07:16 +08:00
className="w-full max-w-2xl mt-24"
2024-06-15 00:56:04 +08:00
src={process.env.NEXT_PUBLIC_CDN_URL + "/public/svgs/illustatus.svg"}
2024-01-03 01:07:16 +08:00
alt=""
/>
<p className="text-2xl text-white font-semibold">404 当前页面不存在</p>
<Link href="/" className="mt-4 btn btn-primary text-white text-base">
返回首页
</Link>
</section>
);
}