Blocks
Ready-made blocks built with lily components. Open them full-screen, resize the preview, and copy the source into your apps.
A simple login form.
Open in New Tab<script lang="ts">
import LoginForm from '$lib/components/login-form.svelte';
</script>
<div class="flex min-h-svh w-full items-center justify-center bg-(--bg) p-6 md:p-10">
<div class="w-full max-w-sm">
<LoginForm />
</div>
</div>