components/about/about.component.ts
About page for disaggregation application.
selector | app-about |
imports |
NshmpAboutContentComponent
NshmpAboutDescriptionComponent
NshmpAboutDescriptionTitleComponent
NshmpAboutUsingApplicationExpansionPanelComponent
NshmpAboutOptionsComponent
NshmpAboutNavMenuComponent
NshmpAboutArcgisComponent
|
templateUrl | ./about.component.html |
styleUrl | ./about.component.scss |
constructor()
|
Defined in components/about/about.component.ts:29
|
import {Component} from '@angular/core';
import {
NshmpAboutArcgisComponent,
NshmpAboutContentComponent,
NshmpAboutDescriptionComponent,
NshmpAboutDescriptionTitleComponent,
NshmpAboutNavMenuComponent,
NshmpAboutOptionsComponent,
NshmpAboutUsingApplicationExpansionPanelComponent,
} from '@ghsc/nshmp-lib-ng/about';
/**
* About page for disaggregation application.
*/
@Component({
imports: [
NshmpAboutContentComponent,
NshmpAboutDescriptionComponent,
NshmpAboutDescriptionTitleComponent,
NshmpAboutUsingApplicationExpansionPanelComponent,
NshmpAboutOptionsComponent,
NshmpAboutNavMenuComponent,
NshmpAboutArcgisComponent,
],
selector: 'app-about',
styleUrl: './about.component.scss',
templateUrl: './about.component.html',
})
export class AboutComponent {
constructor() {}
}
<nshmp-about-content>
<nshmp-about-description>
<nshmp-about-description-title>
The disaggregation application performs on-demand disaggregation of probabilistic seismic
hazard for USGS national seismic hazard models (NSHMs) at a specified return-period or
intensity measure level of interest.
</nshmp-about-description-title>
</nshmp-about-description>
<!-- Using this application panel -->
<nshmp-about-using-application-expansion-panel>
<nshmp-about-nav-menu />
<nshmp-about-options />
<nshmp-about-arcgis />
</nshmp-about-using-application-expansion-panel>
</nshmp-about-content>