feat: add clerk auth support with convex (#548)

This commit is contained in:
Aman Varshney
2025-08-29 00:21:08 +05:30
committed by GitHub
parent 8d48ae0359
commit 54bcdf1cbc
153 changed files with 1954 additions and 771 deletions

View File

@@ -1,11 +1,11 @@
<script lang="ts">
{{#if auth}}
{{#if (eq auth "better-auth")}}
import UserMenu from './UserMenu.svelte';
{{/if}}
const links = [
{ to: "/", label: "Home" },
{{#if auth}}
{{#if (eq auth "better-auth")}}
{ to: "/dashboard", label: "Dashboard" },
{{/if}}
{{#if (includes examples "todo")}}
@@ -31,7 +31,7 @@
{/each}
</nav>
<div class="flex items-center gap-2">
{{#if auth}}
{{#if (eq auth "better-auth")}}
<UserMenu />
{{/if}}
</div>