Yes all the fields on the homepage have images uploaded via the panel.
Nevertheless, to be on the safe side, add an if-statement around your image div:
<?php if($image): ?>
<div class="third product">
<img src="<?php echo $image->resize(100)->url() ?>">
</div>
<?php endif ?>