Skip to content

Commit be11f95

Browse files
committed
feat: use SVG logo in sidebar header and canvas brand mark
1 parent 302c1ce commit be11f95

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

src/components/LeftModeButtons.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export function LeftModeButtons() {
1616

1717
return (
1818
<div className="absolute top-3 left-3 z-10 flex items-center gap-1.5">
19-
<span className="flex items-center justify-center w-5 h-5 rounded bg-accent/90 text-accent-foreground font-mono font-black text-[11px] leading-none select-none mr-0.5">G</span>
19+
<img src="/favicon.svg" alt="Glyph" className="w-5 h-5 rounded select-none mr-0.5" draggable={false} />
2020
{PANELS.map((p) => (
2121
<Button
2222
key={p.value}

src/components/SidebarHeader.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ export function SidebarHeader() {
33
<div className="flex flex-col gap-3 px-4 pt-5 pb-3">
44
{/* Brand */}
55
<div className="flex items-center gap-2.5">
6-
<div className="flex items-center justify-center w-7 h-7 rounded-md bg-accent text-accent-foreground font-mono font-black text-sm leading-none select-none">
7-
G
8-
</div>
6+
<img src="/favicon.svg" alt="Glyph" className="w-7 h-7 rounded-md select-none" draggable={false} />
97
<div className="flex flex-col">
108
<span className="text-sm font-bold tracking-tight font-mono text-foreground leading-none">
119
GLYPH

0 commit comments

Comments
 (0)