GithubCard() — supabase Function Reference
Architecture documentation for the GithubCard() function in GithubCard.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/docs/components/GithubCard.tsx lines 3–17
export default function GithubCard({ title, description, href, stars, handle }) {
return (
<a className="h-full" href={href}>
<div className="card__body">
<h4 className="uppercase my-2 font-semibold">{title}</h4>
<span className="text-sm">{description}</span>
</div>
<hr className="my-2" />
<div className="flex justify-between py-2 text-xs">
<div>@{handle}</div>
<div>{stars} ★</div>
</div>
</a>
)
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free