Runtime error cannot find module "../

I am receiving this error Runtime Error
Cannot find module “…/dogbeach/dogbeach”

I generated a similar page titled “beaches” it worked perfectly but when i get to import { dogbeachpage } it cant seem to find this page in Visual Studio.

this is app.module.ts I currently have:
import { NgModule, ErrorHandler } from ‘@angular/core’;
import { IonicApp, IonicModule, IonicErrorHandler } from ‘ionic-angular’;
import { MyApp } from ‘./app.component’;
import { AboutPage } from ‘…/pages/about/about’;
import { ContactPage } from ‘…/pages/contact/contact’;
import { HomePage } from ‘…/pages/home/home’;
import { BeachesPage } from ‘…/pages/beaches/beaches’;
import { DogBeachPage } from ‘…/pages/dogbeach/dogbeach’;
import { TabsPage } from ‘…/pages/tabs/tabs’;
import { StatusBar } from ‘@ionic-native/status-bar’;
import { SplashScreen } from ‘@ionic-native/splash-screen’;

@NgModule({
declarations: [
MyApp,
AboutPage,
ContactPage,
HomePage,
BeachesPage,
DogBeachPage,
TabsPage
],
imports: [
IonicModule.forRoot(MyApp)
],
bootstrap: [IonicApp],
entryComponents: [
MyApp,
AboutPage,
ContactPage,
HomePage,
BeachesPage,
DogBeachPage,
TabsPage
],
providers: [
StatusBar,
SplashScreen,
{provide: ErrorHandler, useClass: IonicErrorHandler}
]
})
export class AppModule {}

Please advise…