Skip to content

Commit 2f5bb97

Browse files
committed
chore: update logo to web and documentation
1 parent 74f0442 commit 2f5bb97

12 files changed

Lines changed: 82 additions & 11 deletions

File tree

apps/web/AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ src/
3636
├── router.ts # Route definitions, auth guard, chunk error recovery
3737
├── style.css # Tailwind imports (delegates to @memohai/ui/style.css)
3838
├── i18n.ts # vue-i18n configuration
39-
├── assets/ # Static assets (logo.png)
39+
├── assets/ # Static assets (logo.svg)
4040
├── components/ # Shared components
4141
│ ├── sidebar/ # Bot list sidebar (collapsible, bot items, settings link)
4242
│ │ ├── index.vue # Sidebar with bot list + settings gear footer

apps/web/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/logo.png" />
5+
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<title>Memoh</title>
88
</head>

apps/web/public/logo.png

-51.4 KB
Binary file not shown.

apps/web/public/logo.svg

Lines changed: 25 additions & 0 deletions
Loading

apps/web/src/assets/logo.png

-51.4 KB
Binary file not shown.

apps/web/src/assets/logo.svg

Lines changed: 25 additions & 0 deletions
Loading

apps/web/src/components/chat/chat-status/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<template>
22
<section class="relative rounded-full p-0.5 border flex-none">
33
<img
4-
src="/logo.png"
5-
alt="logo.png"
4+
src="/logo.svg"
5+
alt="logo.svg"
66
class="w-6.5"
77
>
88
<LoaderCircle

apps/web/src/pages/about/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<!-- Header: Logo + Version + Check Button -->
55
<div class="flex items-center gap-3">
66
<img
7-
src="/logo.png"
7+
src="/logo.svg"
88
alt="Memoh"
99
class="size-10 shrink-0 rounded-lg"
1010
>

docs/docs/.vitepress/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default defineConfig({
99
description: 'Multi-Member, Structured Long-Memory, Containerized AI Agent System.',
1010

1111
head: [
12-
['link', { rel: 'icon', href: '/logo.png' }]
12+
['link', { rel: 'icon', href: '/logo.svg' }]
1313
],
1414

1515
base: '/',
@@ -39,7 +39,7 @@ export default defineConfig({
3939
],
4040

4141
logo: {
42-
src: '/logo.png',
42+
src: '/logo.svg',
4343
alt: 'Memoh'
4444
},
4545

docs/docs/index.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,3 @@ Memoh(/ˈmemoʊ/) is a multi-member, structured long-memory, containerized AI ag
2020
- **[MCP](/getting-started/mcp)** — Configure tool servers, OAuth, probing, import/export.
2121
- **[Memory](/getting-started/memory)** — Long-term memory providers and memory compaction.
2222
- **[Context Compaction](/getting-started/compaction)** — Reduce active session context size without changing stored memory.
23-
24-
## Chinese Entry
25-
26-
- **[简体中文入口](/zh/)** — Chinese landing page with translated concepts and links to key guides.

0 commit comments

Comments
 (0)