FindMyRecipe / src / routes / NotFound.svelte
NotFound.svelte
Raw
<script>
</script>

<div>
  <div class="hero min-h-screen bg-base-200">
    <div class="hero-content text-center">
      <div class="max-w-xl">
        <h1 class="text-5xl font-bold">Page Not Found</h1>
      </div>
    </div>
  </div>
</div>