diff --git a/apps/web/AGENTS.md b/apps/web/AGENTS.md index 398b2e8c..9d5e04bd 100644 --- a/apps/web/AGENTS.md +++ b/apps/web/AGENTS.md @@ -36,7 +36,7 @@ src/ ├── router.ts # Route definitions, auth guard, chunk error recovery ├── style.css # Tailwind imports (delegates to @memohai/ui/style.css) ├── i18n.ts # vue-i18n configuration -├── assets/ # Static assets (logo.png) +├── assets/ # Static assets (logo.svg) ├── components/ # Shared components │ ├── sidebar/ # Bot list sidebar (collapsible, bot items, settings link) │ │ ├── index.vue # Sidebar with bot list + settings gear footer diff --git a/apps/web/index.html b/apps/web/index.html index b9285d79..78df5cca 100644 --- a/apps/web/index.html +++ b/apps/web/index.html @@ -2,7 +2,7 @@ - + Memoh diff --git a/apps/web/public/logo.png b/apps/web/public/logo.png deleted file mode 100644 index 7d6543cb..00000000 Binary files a/apps/web/public/logo.png and /dev/null differ diff --git a/apps/web/public/logo.svg b/apps/web/public/logo.svg new file mode 100644 index 00000000..d29cacc7 --- /dev/null +++ b/apps/web/public/logo.svg @@ -0,0 +1,25 @@ + + + + + + + \ No newline at end of file diff --git a/apps/web/src/assets/logo.png b/apps/web/src/assets/logo.png deleted file mode 100644 index 7d6543cb..00000000 Binary files a/apps/web/src/assets/logo.png and /dev/null differ diff --git a/apps/web/src/assets/logo.svg b/apps/web/src/assets/logo.svg new file mode 100644 index 00000000..d29cacc7 --- /dev/null +++ b/apps/web/src/assets/logo.svg @@ -0,0 +1,25 @@ + + + + + + + \ No newline at end of file diff --git a/apps/web/src/components/chat/chat-status/index.vue b/apps/web/src/components/chat/chat-status/index.vue index cb1cab16..8b284234 100644 --- a/apps/web/src/components/chat/chat-status/index.vue +++ b/apps/web/src/components/chat/chat-status/index.vue @@ -1,8 +1,8 @@