Home / Function/ NextUp() — supabase Function Reference

NextUp() — supabase Function Reference

Architecture documentation for the NextUp() function in next-up.tsx from the supabase codebase.

Entity Profile

Relationship Graph

Source Code

apps/learn/components/next-up.tsx lines 12–38

export function NextUp({ title, description, href, chapterNumber }: NextUpProps) {
  return (
    <div className="mt-16 mb-8 grow">
      <div className="bg-background border border-border rounded-lg shadow-sm p-8 max-w-2xl">
        <div className="grid gap-4">
          <p className="text-sm text-foreground-lighter">Next Up</p>
          <h2 className="text-xl font-bold text-foreground">
            {chapterNumber && <span>{chapterNumber}: </span>}
            {title}
          </h2>
          <p className="text-foreground text-base">{description}</p>
          <div className="mt-2">
            <Link href={href}>
              <Button
                type="default"
                iconRight={<ArrowRight className="h-4 w-4" />}
                className="flex items-center gap-2"
              >
                Start {chapterNumber ? `Chapter ${chapterNumber}` : 'Next'}
              </Button>
            </Link>
          </div>
        </div>
      </div>
    </div>
  )
}

Subdomains

Analyze Your Own Codebase

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

Try Supermodel Free