From dfad12117dbcee37ba0f9fed2bd9c950d6c9e1c2 Mon Sep 17 00:00:00 2001 From: Jay Hack Date: Tue, 23 Jun 2026 11:15:34 -0700 Subject: [PATCH] docs: shrink navbar logo and use white-on-black favicon Reduce the Codegen mark in the wordmark from size-7 to size-5 so it sits better next to the text. Switch the favicon background from blue to black (white mark on black) and wire it into the site metadata so it actually renders in the browser tab. Co-authored-by: Cursor --- docs/favicon.svg | 2 +- site/app/layout.tsx | 3 +++ site/components/logo.tsx | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/favicon.svg b/docs/favicon.svg index f7ae34244..e41f59a35 100644 --- a/docs/favicon.svg +++ b/docs/favicon.svg @@ -7,7 +7,7 @@ stroke-width: 0px; } .background { - fill: #2700E5; + fill: #0a0a0f; } diff --git a/site/app/layout.tsx b/site/app/layout.tsx index 8c7cb5305..050fe666b 100644 --- a/site/app/layout.tsx +++ b/site/app/layout.tsx @@ -7,6 +7,9 @@ export const metadata: Metadata = { description: "Write Python programs that understand and safely edit whole codebases.", metadataBase: new URL("https://graph-sitter.com"), + icons: { + icon: [{ url: "/favicon.svg", type: "image/svg+xml" }], + }, openGraph: { title: "Graph-sitter", description: diff --git a/site/components/logo.tsx b/site/components/logo.tsx index c3adeab61..5ee1ce627 100644 --- a/site/components/logo.tsx +++ b/site/components/logo.tsx @@ -4,7 +4,7 @@ export function Logo({ className }: { className?: string }) { return (