19 lines
296 B
Svelte
19 lines
296 B
Svelte
<script lang="ts">
|
|
import { AuthForm } from '$lib/components/app/auth-form';
|
|
|
|
const { data } = $props();
|
|
const { user } = data;
|
|
</script>
|
|
|
|
<svelte:head>
|
|
<title>VPGen</title>
|
|
</svelte:head>
|
|
|
|
<h1>Welcome to VPGen</h1>
|
|
|
|
{#if user }
|
|
<p>Hi {user.name}</p>
|
|
{:else}
|
|
<AuthForm class="p-4" />
|
|
{/if}
|