From 2f9b81db60e6aa749a3598513883de5fb5ed5b5c Mon Sep 17 00:00:00 2001
From: Brandon Clayton <bclayton@usgs.gov>
Date: Tue, 12 Nov 2024 12:29:59 -0700
Subject: [PATCH] add ncm routes

---
 projects/nshmp-apps/src/app/ncm/ncm.routes.ts | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 projects/nshmp-apps/src/app/ncm/ncm.routes.ts

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 000000000..b339f3475
--- /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;
+}
-- 
GitLab