Skip to content

Commit 52310e3

Browse files
authored
feat: modern UI (#34)
1 parent d0684f2 commit 52310e3

33 files changed

+159
-124
lines changed

astro.config.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export default defineConfig({
4040
name: 'Anse',
4141
short_name: 'Anse',
4242
description: 'Anse is a fully optimized UI for AI Chats.',
43-
theme_color: '#212129',
43+
theme_color: '#101010',
4444
background_color: '#ffffff',
4545
icons: [
4646
{
@@ -54,7 +54,7 @@ export default defineConfig({
5454
type: 'image/png',
5555
},
5656
{
57-
src: 'icon.svg',
57+
src: 'logo.svg',
5858
sizes: '32x32',
5959
type: 'image/svg',
6060
purpose: 'any maskable',

public/apple-touch-icon.png

1.49 KB
Loading

public/icon.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

public/logo.svg

Lines changed: 10 additions & 0 deletions
Loading

public/pwa-192.png

-5.64 KB
Loading

public/pwa-512.png

-19.4 KB
Loading

public/robots.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
User-agent: *
2+
Allow: /

src/assets/zag-components.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,10 @@
8383
* -----------------------------------------------------------------------------*/
8484

8585
[data-scope='select'][data-part='content'] {
86-
@apply border border-darker
86+
@apply border border-base-100
8787
}
8888
[data-scope='select'][data-part='trigger'][data-expanded] {
89-
@apply border border-darker
89+
@apply border border-base-100
9090
}
9191

9292
/* -----------------------------------------------------------------------------

src/components/Main.astro

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import Conversation from './main/Conversation'
1010
<main class="relative h-full flex-1 flex flex-col overflow-hidden bg-base">
1111
<Header client:load />
1212
<main class="flex-1 mt-14 flex flex-col overflow-hidden">
13-
<!-- <ConversationConfiguration /> -->
1413
<div class="flex-1 relative overflow-hidden">
1514
<Conversation client:only />
1615
</div>

src/components/ModalsLayer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import Modal from './ui/Modal'
1313
export default () => {
1414
return (
1515
<>
16-
<Modal bindValue={showConversationSidebar} direction="left">
16+
<Modal bindValue={showConversationSidebar} direction="left" closeBtnClass="hidden">
1717
<div class="w-[70vw] max-w-[300px] h-full">
1818
<ConversationSidebar />
1919
</div>

0 commit comments

Comments
 (0)