How can I fit this category slug
<?php $term = get_queried_object(); echo $term->slug; ?>
into this page content
<?php $page = get_posts([ 'name' => 'slug-goes-here', 'post_type' => 'page' ]); if ( $page ){ echo $page[0]->post_content;} ?>