mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-16 02:03:01 +03:00
16 lines
546 B
Svelte
16 lines
546 B
Svelte
<script lang="ts">
|
|
import { Button } from '$lib/components/ui/button';
|
|
import { LucideXCircle } from 'lucide-svelte';
|
|
|
|
let { message, showButton = true }: { message: string; showButton?: boolean } = $props();
|
|
</script>
|
|
|
|
<div class="mt-[20%] flex flex-col items-center">
|
|
<LucideXCircle class="h-12 w-12 text-muted-foreground" />
|
|
<h1 class="mt-3 text-2xl font-semibold">Something went wrong</h1>
|
|
<p class="text-muted-foreground">{message}</p>
|
|
{#if showButton}
|
|
<Button size="sm" class="mt-5" href="/">Go back to home</Button>
|
|
{/if}
|
|
</div>
|