Skip to content

Commit d0aba02

Browse files
feat: rename Honcho UI to OpenConcho, use SVG logo in sidebar and settings
1 parent c2e2c83 commit d0aba02

3 files changed

Lines changed: 15 additions & 23 deletions

File tree

packages/web/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8" />
55
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Honcho UI</title>
7+
<title>OpenConcho</title>
88
<meta name="description" content="Frontend for self-hosted Honcho instances — browse memories, chat with memory context" />
99
</head>
1010
<body>

packages/web/src/components/layout/Sidebar.tsx

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { Link, useMatchRoute } from "@tanstack/react-router";
22
import { motion } from "framer-motion";
33
import {
44
Boxes,
5-
Brain,
65
ChevronRight,
76
Eye,
87
EyeOff,
@@ -44,21 +43,18 @@ export function Sidebar() {
4443
{/* Logo */}
4544
<div className="px-3 sm:px-5 py-5" style={{ borderBottom: "1px solid var(--border)" }}>
4645
<div className="flex items-center gap-2.5 justify-center sm:justify-start">
47-
<div
48-
className="w-7 h-7 rounded-lg flex items-center justify-center shrink-0"
49-
style={{
50-
background: "linear-gradient(135deg, #4f46e5, #7c3aed)",
51-
boxShadow: `0 0 16px ${COLOR.accentGlow}`,
52-
}}
53-
>
54-
<Brain className="w-4 h-4 text-white" strokeWidth={2} />
55-
</div>
46+
<img
47+
src="/favicon.svg"
48+
alt="OpenConcho"
49+
className="w-7 h-7 rounded-lg shrink-0"
50+
style={{ boxShadow: `0 0 16px ${COLOR.accentGlow}` }}
51+
/>
5652
<div className="hidden sm:block">
5753
<span
5854
className="font-semibold text-sm tracking-tight"
5955
style={{ color: "var(--text-1)" }}
6056
>
61-
Honcho UI
57+
OpenConcho
6258
</span>
6359
</div>
6460
</div>

packages/web/src/routes/settings.tsx

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { createFileRoute, useNavigate } from "@tanstack/react-router";
22
import { motion } from "framer-motion";
3-
import { Brain } from "lucide-react";
43
import { SettingsForm } from "@/components/settings/SettingsForm";
54

65
export const Route = createFileRoute("/settings")({
@@ -22,17 +21,14 @@ function SettingsPage() {
2221
className="w-full max-w-md"
2322
>
2423
<div className="mb-8 text-center">
25-
<div
26-
className="w-14 h-14 rounded-2xl flex items-center justify-center mx-auto mb-4"
27-
style={{
28-
background: "linear-gradient(135deg, #4f46e5, #7c3aed)",
29-
boxShadow: "0 0 32px rgba(99,102,241,0.35)",
30-
}}
31-
>
32-
<Brain className="w-7 h-7 text-white" strokeWidth={2} />
33-
</div>
24+
<img
25+
src="/favicon.svg"
26+
alt="OpenConcho"
27+
className="w-14 h-14 rounded-2xl mx-auto mb-4"
28+
style={{ boxShadow: "0 0 32px rgba(99,102,241,0.35)" }}
29+
/>
3430
<h1 className="text-2xl font-semibold tracking-tight" style={{ color: "var(--text-1)" }}>
35-
Honcho UI
31+
OpenConcho
3632
</h1>
3733
<p className="text-sm mt-1" style={{ color: "var(--text-3)" }}>
3834
Connect to your self-hosted Honcho instance

0 commit comments

Comments
 (0)