Home / Function/ RecommendationsList() — supabase Function Reference

RecommendationsList() — supabase Function Reference

Architecture documentation for the RecommendationsList() function in NotFound.client.tsx from the supabase codebase.

Entity Profile

Relationship Graph

Source Code

apps/docs/features/recommendations/NotFound.client.tsx lines 63–83

function RecommendationsList({
  recommendations,
}: {
  recommendations: Array<Omit<DocsSearchResult, 'sections'>>
}) {
  return (
    <ul className={cn('not-prose', 'grid grid-cols-[repeat(auto-fit,minmax(300px,1fr))] gap-4')}>
      {recommendations
        .filter(({ title }) => !!title)
        .slice(0, 6)
        .map(({ path, title, subtitle, description }) => (
          <ButtonCard
            key={path}
            to={path}
            title={title}
            description={subtitle || description || undefined}
          />
        ))}
    </ul>
  )
}

Subdomains

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free