Files
Tiber365/src/routes/NotFound.svelte

6 lines
192 B
Svelte

<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>