From d9285621510d23546f905f035bf87260dd2e0224 Mon Sep 17 00:00:00 2001 From: Jay Hack Date: Tue, 23 Jun 2026 08:46:21 -0700 Subject: [PATCH] docs: use the Codegen mark as the graph-sitter logo Replace the placeholder logo glyph with the Codegen brand mark, rendered inline with currentColor tied to text-foreground so it respects light and dark mode (black on light, white on dark). Capitalize the "Graph-sitter" wordmark in the navbar. Co-authored-by: Cursor --- site/components/logo.tsx | 32 +++++++++----------------------- 1 file changed, 9 insertions(+), 23 deletions(-) diff --git a/site/components/logo.tsx b/site/components/logo.tsx index ad1e78eaf..c3adeab61 100644 --- a/site/components/logo.tsx +++ b/site/components/logo.tsx @@ -2,30 +2,16 @@ import { cn } from "@/lib/utils"; export function Logo({ className }: { className?: string }) { return ( - + + + + ); } @@ -38,7 +24,7 @@ export function Wordmark({ className }: { className?: string }) { )} > - graph-sitter + Graph-sitter ); }