We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5cce56 commit 9a141eaCopy full SHA for 9a141ea
1 file changed
src/app/[...not-found]/page.tsx
@@ -7,12 +7,14 @@ export default async function NotFound() {
7
const data = await getSiteData(domain)
8
return (
9
<div className="z-10 flex items-center sm:items-start ">
10
- <div className="flex w-screen">
11
- <h2>Not Found: {data.name}</h2>
12
- <p>Could not find requested resource</p>
13
- <p>
14
- View <Link href="/blog">all posts</Link>
15
- </p>
+ <div className="flex w-screen min-h-64 pt-24 items-center">
+ <div className="flex flex-col items-center w-full">
+ <h2>Not Found: {data.name}</h2>
+ <p>Could not find requested resource</p>
+ <p>
+ View <Link href="/">all posts</Link>
16
+ </p>
17
+ </div>
18
</div>
19
20
)
0 commit comments