11 lines
311 B
Svelte
11 lines
311 B
Svelte
<script>
|
|
import Button from '$lib/components/ui/button/button.svelte';
|
|
import { pb } from '$lib/db.svelte';
|
|
</script>
|
|
|
|
<h1>Welcome to SvelteKit</h1>
|
|
<p>
|
|
Visit <Button variant="link" href="https://svelte.dev/docs/kits">svelte.dev/docs/kit</Button> to read
|
|
the documentation
|
|
{pb.authStore.record?.name}
|
|
</p>
|