Hi Graham,
Please check that the repository for your new page tab contains LatestVersion and Published methods. Example from Dancing Goat MVC:
public Home GetHomePage()
{
return HomeProvider.GetHomes()
.LatestVersion(mLatestVersionEnabled)
.Published(!mLatestVersionEnabled)
.OnSite(SiteContext.CurrentSiteName)
.Culture(mCultureName)
.CombineWithDefaultCulture()
.TopN(1);
}