diff --git a/projects/nshmp-apps/src/app/designmaps/rtgm/components/plots/plots.component.html b/projects/nshmp-apps/src/app/designmaps/rtgm/components/plots/plots.component.html
index 82c4428f83b00ccbf07715e68a374dbce1dce312..db8d990d01406868b6d8ff0df39f69d76ad6d62f 100644
--- a/projects/nshmp-apps/src/app/designmaps/rtgm/components/plots/plots.component.html
+++ b/projects/nshmp-apps/src/app/designmaps/rtgm/components/plots/plots.component.html
@@ -1,4 +1,13 @@
 <nshmp-lib-ng-plots-container>
+  <nshmp-lib-ng-alert>
+    This application currently performs the RTGM calculation for a single
+    intensity measure (IM) hazard curve at a time. For bulk calculation of RTGMs
+    for a larger number of IM hazard curves, please refer to
+    <a target="_blank">https://earthquake.usgs.gov/ws/nshmp/designmaps/rtgm/</a>
+    or
+    <a target="_blank">https://code.usgs.gov/ghsc/erp/erp-rtgm-calculator</a>
+  </nshmp-lib-ng-alert>
+
   <mat-accordion multi>
     @for (plot of plots(); track $index) {
       <mat-expansion-panel expanded>
diff --git a/projects/nshmp-apps/src/app/designmaps/rtgm/components/plots/plots.component.ts b/projects/nshmp-apps/src/app/designmaps/rtgm/components/plots/plots.component.ts
index d916030011d1e2a53c1cb3f80529ffd25363b68c..220132002d36ea70fb30096cd596f9193b26527b 100644
--- a/projects/nshmp-apps/src/app/designmaps/rtgm/components/plots/plots.component.ts
+++ b/projects/nshmp-apps/src/app/designmaps/rtgm/components/plots/plots.component.ts
@@ -1,7 +1,10 @@
 import {Component, computed, OnDestroy, OnInit} from '@angular/core';
 import {MatDivider} from '@angular/material/divider';
 import {MatExpansionModule} from '@angular/material/expansion';
-import {NshmpLibNgAppMetadataComponent} from '@ghsc/nshmp-lib-ng/nshmp';
+import {
+  NshmpLibNgAlertComponent,
+  NshmpLibNgAppMetadataComponent,
+} from '@ghsc/nshmp-lib-ng/nshmp';
 import {
   NshmpLibNgPlotComponent,
   NshmpLibNgPlotsContainerComponent,
@@ -18,6 +21,7 @@ import {RtgmSummaryComponent} from '../rtgm-summary/rtgm-summary.component';
     NshmpLibNgPlotsContainerComponent,
     NshmpLibNgPlotComponent,
     NshmpLibNgAppMetadataComponent,
+    NshmpLibNgAlertComponent,
     MatExpansionModule,
     MatDivider,
     ParameterSummaryComponent,