How to deploy static page with app using meteor

I have created some static pages together with the app by using meteor, what are approaches to deploy them? Thanks

Create a new directory in your project root called public, store your files there, then access them as you would any HTML page (e.g. http://localhost:3000/somepage.html). Files stored in /public are served as is.

Thanks @hwillson, then how can i convert multiple react files to static html?