OK, I've had a peek, and it looks to me like a Template Monster template - and if so, you really should have done your research before buying it! :cry:
Basically, whoever did build the template has removed elements from the code to make the template look good, and in this case, they have commented out the main page text display. I have fixed this problem with your current text, but it's possible that if you add much more, then it may break the layout. You may well encounter other problems with this template when you try to add things.
Although you could complain to the supplier of the template, their response is likely to be that you bought what you saw.
FYI, I edited includes/templates/theme046/templates/tpl_index_default.php and replaced (about line 29)
<?php
/**
* get the Define Main Page Text
*/
/*
?>
<div id="indexDefaultMainContent" class="content"><?php require($define_page); ?></div>
<?php */ } ?>
```with ```
<?php
/**
* get the Define Main Page Text
*/
?>
<div id="indexDefaultMainContent" class="content"><?php require($define_page); ?></div>
<?php } ?>