diff --git a/README.md b/README.md index 5a4d727..6d340bc 100644 --- a/README.md +++ b/README.md @@ -81,3 +81,11 @@ Clone of [T3 Chat](https://t3.chat/) - ~[ ] Test link with free credits~ - [x] Cursor-like Rules (@ieedan's idea!) - [x] Full-text search + +### Final push + +- [ ] Private mode for greeting +- [ ] Free mode +- [ ] make things prettier +- [ ] mobile adjustments +- [ ] cloud per chat persistance diff --git a/src/lib/components/app-sidebar.svelte b/src/lib/components/app-sidebar.svelte index 0cb37cc..13460b6 100644 --- a/src/lib/components/app-sidebar.svelte +++ b/src/lib/components/app-sidebar.svelte @@ -1,25 +1,24 @@ diff --git a/src/routes/chat/+page.svelte b/src/routes/chat/+page.svelte index 6015b5e..5234e53 100644 --- a/src/routes/chat/+page.svelte +++ b/src/routes/chat/+page.svelte @@ -18,6 +18,10 @@ 'When are you going to take my job?', ]; + const settings = useCachedQuery(api.user_settings.get, { + session_token: session.current?.session.token ?? '', + }); + const suggestionCategories: Record = { Create: { icon: IconAi, @@ -71,7 +75,9 @@ {#if prompt.current.length === 0 && openRouterKeyQuery.data} - Hey there{session.current?.user.name ? ` ${session.current?.user.name}` : ''}! + Hey there {session.current?.user.name ? ` ${session.current?.user.name}` : ''}! {#each Object.entries(suggestionCategories) as [category, opts] (category)} @@ -124,7 +130,9 @@ {:else if !openRouterKeyQuery.data} - Hey there, {session.current?.user.name}! + Hey there, {session.current?.user.name}! You need to provide a key to start sending messages. diff --git a/static/favicon.png b/static/favicon.png index 2202b34..509f483 100644 Binary files a/static/favicon.png and b/static/favicon.png differ
You need to provide a key to start sending messages. diff --git a/static/favicon.png b/static/favicon.png index 2202b34..509f483 100644 Binary files a/static/favicon.png and b/static/favicon.png differ