Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 9 additions & 23 deletions site/components/logo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,16 @@ import { cn } from "@/lib/utils";

export function Logo({ className }: { className?: string }) {
return (
<span
className={cn(
"inline-flex size-8 items-center justify-center rounded-lg bg-primary/12 text-primary ring-1 ring-inset ring-primary/25",
className,
)}
<svg
viewBox="0 0 80.87 80.87"
className={cn("size-7 text-foreground", className)}
fill="currentColor"
aria-hidden="true"
>
<svg
aria-hidden="true"
viewBox="0 0 24 24"
className="size-[1.05rem]"
fill="none"
stroke="currentColor"
strokeWidth={1.6}
>
<path
d="M7.4 8.4 16 6.2 M7.7 9.9 11.3 15.2 M12.7 15.4 16.6 7.6"
strokeLinecap="round"
/>
<circle cx="6" cy="8" r="2.5" fill="currentColor" stroke="none" />
<circle cx="17.6" cy="6" r="2" fill="currentColor" stroke="none" />
<circle cx="12" cy="16.4" r="2.3" fill="currentColor" stroke="none" />
</svg>
</span>
<path d="M57.34,27.51c-.79.79-.79,2.07,0,2.86l8.64,8.64c.79.79.79,2.07,0,2.86l-8.64,8.64c-.79.79-.79,2.07,0,2.86l4.29,4.29c.79.79,2.07.79,2.86,0l15.79-15.79c.79-.79.79-2.07,0-2.86l-15.79-15.79c-.79-.79-2.07-.79-2.86,0,0,0-4.29,4.29-4.29,4.29Z" />
<path d="M50.19,60.51c-.79-.79-2.07-.79-2.86,0l-5.47,5.47c-.79.79-2.07.79-2.86,0l-24.12-24.12c-.79-.79-.79-2.07,0-2.86l24.12-24.12c.79-.79,2.07-.79,2.86,0l5.47,5.47c.79.79,2.07.79,2.86,0l4.29-4.29c.79-.79.79-2.07,0-2.86L41.86.59c-.79-.79-2.07-.79-2.86,0L.59,39.01c-.79.79-.79,2.07,0,2.86l38.41,38.41c.79.79,2.07.79,2.86,0l12.62-12.62c.79-.79.79-2.07,0-2.86,0,0-4.29-4.29-4.29-4.29Z" />
<path d="M50.54,40.44c0,5.58-4.53,10.11-10.11,10.11s-10.11-4.53-10.11-10.11,4.53-10.11,10.11-10.11,10.11,4.53,10.11,10.11Z" />
</svg>
);
}

Expand All @@ -38,7 +24,7 @@ export function Wordmark({ className }: { className?: string }) {
)}
>
<Logo />
<span>graph-sitter</span>
<span>Graph-sitter</span>
</span>
);
}
Loading