Skip to content

Commit

Permalink
Error page
Browse files Browse the repository at this point in the history
  • Loading branch information
prokawsar committed Aug 24, 2024
1 parent d02cb74 commit 33970ae
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/routes/+error.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<script>
import '$lib/app.css'
import '@fontsource/jost'
import BrandTitle from '$lib/elements/BrandTitle.svelte'
</script>

<div class="flex flex-col max-w-6xl mx-auto w-full">
<nav class="max-w-6xl mx-auto w-full">
<div class="flex justify-center py-2">
<BrandTitle />
</div>
<div class="bg-gradient-to-r from-transparent via-orange-800/40 to-transparent p-[1px]" />
</nav>
<p class="text-center text-3xl py-10 text-red-600">Something went error</p>
<a href="/" class="text-center text-xl pt-5">Back to home</a>
</div>

0 comments on commit 33970ae

Please sign in to comment.