GuideFooter() — supabase Function Reference
Architecture documentation for the GuideFooter() function in GuideFooter.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/docs/features/ui/guide/GuideFooter.tsx lines 10–30
export function GuideFooter({ className, editLink }: GuideFooterProps) {
if (!editLink) return null
return (
<footer className={cn('mt-16 not-prose', className)}>
<a
href={editLink.includesProtocol ? editLink.link : `https://github.com/${editLink.link}`}
className={cn(
'w-fit',
'flex items-center gap-1',
'text-sm text-scale-1000 hover:text-scale-1200',
'transition-colors'
)}
target="_blank"
rel="noreferrer noopener edit"
>
Edit this page on GitHub <ExternalLink size={14} strokeWidth={1.5} />
</a>
</footer>
)
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free