see where I am
This commit is contained in:
parent
8fb442411d
commit
80406aa42a
3 changed files with 12 additions and 0 deletions
|
|
@ -55,6 +55,10 @@
|
|||
const keys = useQuery(api.user_keys.get, { user_id: session.current?.user.id ?? '' });
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>API Keys | Thom.chat</title>
|
||||
</svelte:head>
|
||||
|
||||
<div>
|
||||
<h1 class="text-2xl font-bold">API Keys</h1>
|
||||
<h2 class="text-muted-foreground mt-2 text-sm">
|
||||
|
|
|
|||
|
|
@ -8,6 +8,10 @@
|
|||
const client = useConvexClient();
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Models | Thom.chat</title>
|
||||
</svelte:head>
|
||||
|
||||
<div>
|
||||
<h1 class="text-2xl font-bold">Available Models</h1>
|
||||
<h2 class="text-muted-foreground mt-2 text-sm">
|
||||
|
|
|
|||
|
|
@ -7,6 +7,10 @@
|
|||
let { data, children } = $props();
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Chat | Thom.chat</title>
|
||||
</svelte:head>
|
||||
|
||||
<Sidebar.Root>
|
||||
<Sidebar.Sidebar class="flex flex-col p-2">
|
||||
<div class="flex place-items-center justify-center py-2">
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue