Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/app/(public)/[...not-found]/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import NotFound from "../not-found";

export default function CatchAll() {
return (
<div>
<NotFound />
</div>
);
}
10 changes: 10 additions & 0 deletions src/app/(public)/not-found.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export default function NotFound() {
return (
<div className="bg-gradient-to-b from-slate-950 to-blue3 flex flex-col items-center justify-center px-4 py-16 font-inter">
<h1 className="text-[128px] md:text-[256px] text-yellow4 font-extrabold">
404
</h1>
<p className="text-2xl mb-8">Page doesn&apos;t exist :((</p>
</div>
);
}