diff --git a/projects/nshmp-apps/src/app/ncm/ncm.routes.ts b/projects/nshmp-apps/src/app/ncm/ncm.routes.ts
new file mode 100644
index 0000000000000000000000000000000000000000..b339f3475347653801bcf163954e59191c7a6739
--- /dev/null
+++ b/projects/nshmp-apps/src/app/ncm/ncm.routes.ts
@@ -0,0 +1,18 @@
+import {Routes} from '@angular/router';
+
+const routes: Routes = [
+  {
+    loadComponent: () =>
+      import('./geophysical-profiles/app.component').then(
+        com => com.AppComponent
+      ),
+    path: 'geophysical-profiles',
+  },
+];
+
+/**
+ * Return NCM application routes.
+ */
+export function ncmRoutes(): Routes {
+  return routes;
+}