Skip to content

Commit dfad121

Browse files
jayhackcursoragent
andcommitted
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 <cursoragent@cursor.com>
1 parent ff987cd commit dfad121

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

docs/favicon.svg

Lines changed: 1 addition & 1 deletion
Loading

site/app/layout.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ export const metadata: Metadata = {
77
description:
88
"Write Python programs that understand and safely edit whole codebases.",
99
metadataBase: new URL("https://graph-sitter.com"),
10+
icons: {
11+
icon: [{ url: "/favicon.svg", type: "image/svg+xml" }],
12+
},
1013
openGraph: {
1114
title: "Graph-sitter",
1215
description:

site/components/logo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export function Logo({ className }: { className?: string }) {
44
return (
55
<svg
66
viewBox="0 0 80.87 80.87"
7-
className={cn("size-7 text-foreground", className)}
7+
className={cn("size-5 text-foreground", className)}
88
fill="currentColor"
99
aria-hidden="true"
1010
>

0 commit comments

Comments
 (0)