mirror of
https://github.com/tiennm99/coolify.git
synced 2026-04-27 06:20:09 +00:00
@@ -0,0 +1,31 @@
|
||||
<script context="module" lang="ts">
|
||||
export function load({ error, status }: { error: any; status: any }) {
|
||||
console.log(error);
|
||||
return {
|
||||
props: {
|
||||
error,
|
||||
status
|
||||
}
|
||||
};
|
||||
}
|
||||
</script>
|
||||
|
||||
<script lang="ts">
|
||||
import { t } from '$lib/translations';
|
||||
|
||||
export let status: string;
|
||||
export let error: any;
|
||||
</script>
|
||||
|
||||
<div class="mx-auto flex h-screen flex-col items-center justify-center px-4">
|
||||
<div class="pb-10 text-7xl font-bold">{status}</div>
|
||||
<div class="text-3xl font-bold">{$t('error.you_are_lost')}</div>
|
||||
<div class="text-xl">
|
||||
{$t('error.you_can_find_your_way_back')}
|
||||
<a href="/" class="font-bold uppercase text-sky-400">{$t('error.here')}</a>
|
||||
</div>
|
||||
<div class="py-10 text-xs font-bold">
|
||||
<pre
|
||||
class="w-full whitespace-pre-wrap break-words text-left text-xs tracking-tighter">{error.message} {error.stack}</pre>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user