1
0
mirror of https://github.com/pocket-id/pocket-id.git synced 2026-02-11 15:53:59 +00:00
Files
pocket-id/frontend/src/lib/components/web-authn-unsupported.svelte
Jonas Claes 269b5a3c92 feat: add support for translations (#349)
Co-authored-by: Kyle Mendell <kmendell@outlook.com>
Co-authored-by: Elias Schneider <login@eliasschneider.com>
2025-03-20 18:57:41 +00:00

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>