feat: rename Honcho UI to OpenConcho, use SVG logo in sidebar and settings
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>Honcho UI</title>
|
<title>OpenConcho</title>
|
||||||
<meta name="description" content="Frontend for self-hosted Honcho instances — browse memories, chat with memory context" />
|
<meta name="description" content="Frontend for self-hosted Honcho instances — browse memories, chat with memory context" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
@@ -2,7 +2,6 @@ import { Link, useMatchRoute } from "@tanstack/react-router";
|
|||||||
import { motion } from "framer-motion";
|
import { motion } from "framer-motion";
|
||||||
import {
|
import {
|
||||||
Boxes,
|
Boxes,
|
||||||
Brain,
|
|
||||||
ChevronRight,
|
ChevronRight,
|
||||||
Eye,
|
Eye,
|
||||||
EyeOff,
|
EyeOff,
|
||||||
@@ -44,21 +43,18 @@ export function Sidebar() {
|
|||||||
{/* Logo */}
|
{/* Logo */}
|
||||||
<div className="px-3 sm:px-5 py-5" style={{ borderBottom: "1px solid var(--border)" }}>
|
<div className="px-3 sm:px-5 py-5" style={{ borderBottom: "1px solid var(--border)" }}>
|
||||||
<div className="flex items-center gap-2.5 justify-center sm:justify-start">
|
<div className="flex items-center gap-2.5 justify-center sm:justify-start">
|
||||||
<div
|
<img
|
||||||
className="w-7 h-7 rounded-lg flex items-center justify-center shrink-0"
|
src="/favicon.svg"
|
||||||
style={{
|
alt="OpenConcho"
|
||||||
background: "linear-gradient(135deg, #4f46e5, #7c3aed)",
|
className="w-7 h-7 rounded-lg shrink-0"
|
||||||
boxShadow: `0 0 16px ${COLOR.accentGlow}`,
|
style={{ boxShadow: `0 0 16px ${COLOR.accentGlow}` }}
|
||||||
}}
|
/>
|
||||||
>
|
|
||||||
<Brain className="w-4 h-4 text-white" strokeWidth={2} />
|
|
||||||
</div>
|
|
||||||
<div className="hidden sm:block">
|
<div className="hidden sm:block">
|
||||||
<span
|
<span
|
||||||
className="font-semibold text-sm tracking-tight"
|
className="font-semibold text-sm tracking-tight"
|
||||||
style={{ color: "var(--text-1)" }}
|
style={{ color: "var(--text-1)" }}
|
||||||
>
|
>
|
||||||
Honcho UI
|
OpenConcho
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
import { createFileRoute, useNavigate } from "@tanstack/react-router";
|
import { createFileRoute, useNavigate } from "@tanstack/react-router";
|
||||||
import { motion } from "framer-motion";
|
import { motion } from "framer-motion";
|
||||||
import { Brain } from "lucide-react";
|
|
||||||
import { SettingsForm } from "@/components/settings/SettingsForm";
|
import { SettingsForm } from "@/components/settings/SettingsForm";
|
||||||
|
|
||||||
export const Route = createFileRoute("/settings")({
|
export const Route = createFileRoute("/settings")({
|
||||||
@@ -22,17 +21,14 @@ function SettingsPage() {
|
|||||||
className="w-full max-w-md"
|
className="w-full max-w-md"
|
||||||
>
|
>
|
||||||
<div className="mb-8 text-center">
|
<div className="mb-8 text-center">
|
||||||
<div
|
<img
|
||||||
className="w-14 h-14 rounded-2xl flex items-center justify-center mx-auto mb-4"
|
src="/favicon.svg"
|
||||||
style={{
|
alt="OpenConcho"
|
||||||
background: "linear-gradient(135deg, #4f46e5, #7c3aed)",
|
className="w-14 h-14 rounded-2xl mx-auto mb-4"
|
||||||
boxShadow: "0 0 32px rgba(99,102,241,0.35)",
|
style={{ boxShadow: "0 0 32px rgba(99,102,241,0.35)" }}
|
||||||
}}
|
/>
|
||||||
>
|
|
||||||
<Brain className="w-7 h-7 text-white" strokeWidth={2} />
|
|
||||||
</div>
|
|
||||||
<h1 className="text-2xl font-semibold tracking-tight" style={{ color: "var(--text-1)" }}>
|
<h1 className="text-2xl font-semibold tracking-tight" style={{ color: "var(--text-1)" }}>
|
||||||
Honcho UI
|
OpenConcho
|
||||||
</h1>
|
</h1>
|
||||||
<p className="text-sm mt-1" style={{ color: "var(--text-3)" }}>
|
<p className="text-sm mt-1" style={{ color: "var(--text-3)" }}>
|
||||||
Connect to your self-hosted Honcho instance
|
Connect to your self-hosted Honcho instance
|
||||||
|
|||||||
Reference in New Issue
Block a user