Sorry if the question is wrong I'm a beginner.. I'm working on an educational website using Angular 11 that includes articles (around 20 articles). However those articles are generally static and won't change later. I made a component as a template for the articles so that I send the texts to them as input, but I felt like there maybe a more efficient way to do it.. is there a way to store and read them as resources? Or shall I just store them as constants? Any ideas of how to do this properly? Do I really need to make a database for this context?
<div class="article-block">
<table class="articleBody">
<tr>
<td><app-item-navigator></app-item-navigator></td>
<td width="95%">
<div class="articleText">
{{
// text is supposed to be here
}}
</div>
</td>
</tr>
</table>
</div>