mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-02-11 15:53:59 +00:00
Co-authored-by: Kyle Mendell <kmendell@outlook.com> Co-authored-by: Elias Schneider <login@eliasschneider.com>
15 lines
421 B
Svelte
15 lines
421 B
Svelte
<script>
|
|
import { m } from '$lib/paraglide/messages';
|
|
import Logo from './logo.svelte';
|
|
</script>
|
|
|
|
<div class="flex flex-col justify-center">
|
|
<div class="bg-muted mx-auto rounded-2xl p-3">
|
|
<Logo class="h-10 w-10" />
|
|
</div>
|
|
<p class="font-playfair mt-5 text-3xl font-bold sm:text-4xl">{m.browser_unsupported()}</p>
|
|
<p class="text-muted-foreground mt-3">
|
|
{m.this_browser_does_not_support_passkeys()}
|
|
</p>
|
|
</div>
|