在Next js 13的app目录中,我创建了一个文件not-found.jsx
,以处理404错误。但是它没有覆盖默认的404页面。我在应用程序目录本身内部创建了它,因为我将使用布局和加载。
这是我在not-found.jsx
中使用的
import React from "react";
function NotFound() {
return (
<main class="grid min-h-full place-items-center bg-white px-6 py-24 sm:py-32 lg:px-8">
<div class="text-center">
<p class="text-base font-semibold text-indigo-600">404</p>
<h1 class="mt-4 text-3xl font-bold tracking-tight text-gray-900 sm:text-5xl">
Page not found
</h1>
<p class="mt-6 text-base leading-7 text-gray-600">
Sorry, we couldn’t find the page you’re looking for.
</p>
<div class="mt-10 flex items-center justify-center gap-x-6">
<a
href="#"
class="rounded-md bg-indigo-600 px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600"
>
Go back home
</a>
<a href="#" class="text-sm font-semibold text-gray-900">
Contact support <span aria-hidden="true">→</span>
</a>
</div>
</div>
</main>
);
}
export default NotFound;
1条答案
按热度按时间whhtz7ly1#
出于某种原因,如果你还在寻找解决方案,也许这会有所帮助。
创建
404.jsx
内页文件夹以覆盖默认的未找到页面。但如果您使用的是动态路由,则可以为该路由使用新的not-found.jsx
。