Forget it, I figured it out. Swap this out for your posts php
<?php $recent = new WP_Query(“pagename=EnterYourPageNameHere“); while($recent->have_posts()) : $recent->the_post();?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php endwhile; ?>