Skip to content

Commit

Permalink
Add basic notfound page (#575)
Browse files Browse the repository at this point in the history
  • Loading branch information
fraxachun authored Dec 3, 2024
1 parent fb42862 commit 5bf5820
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions site/src/app/[domain]/[language]/not-found.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import Link from "next/link";

export default async function NotFound404() {
return (
<html>
<body>
<p>Page not found.</p>
<Link href="/">Return Home</Link>
</body>
</html>
);
}

0 comments on commit 5bf5820

Please sign in to comment.