Add NotFound route to App component for improved error handling in navigation

This commit is contained in:
becarta
2025-05-16 01:42:45 +02:00
parent 5a8bf790af
commit ac7c22ffec
2 changed files with 9 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
<script>
export let title = 'Page Not Found';
</script>
<h1>{title}</h1>
<p>The page you are looking for does not exist. Please check the URL or return to the <a href="/">homepage</a>.</p>