porlmatthews Sorry just read your first post again. You won't be able to call a page from another page that way. The static page component can be added only to a layout. If you are trying to redirect the user to the covid page from the reservations page then you can add this to the PHP section
function onStart() {
return Redirect::to($controller->pageUrl('your_covid_page_path'));
}
If you just want to display the covid content, you can create a new partial/content file and render it on the reservations page.