You may want to separate your entries into sections, each with a heading and description. To do this, you can use a section component:
use Filament\Infolists\Components\Section; Section::make('Rate limiting') ->description('Prevent abuse by limiting the number of requests per period') ->schema([ // ... ])
You can also use a section without a header, which just wraps the components in a simple card:
use Filament\Infolists\Components\Section; Section::make() ->schema([ // ... ])