mapcomplete/UI/NotFound.svelte

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
482 B
Svelte
Raw Normal View History

<script>
2023-07-15 19:28:59 +02:00
import Tr from "./Base/Tr.svelte"
import Translations from "./i18n/Translations.ts"
import BackButton from "./Base/BackButton.svelte"
console.log("???")
</script>
2023-07-15 19:28:59 +02:00
<div class="flex flex-col">
2023-07-15 19:28:59 +02:00
<Tr t={Translations.t.general["404"]} />
<BackButton
clss="m-8"
on:click={() => {
window.location = "index.html"
}}
>
<div class="flex w-full justify-center">
2023-07-15 19:28:59 +02:00
<Tr t={Translations.t.general.backToIndex} />
</div>
</BackButton>
</div>