import {Component} from '@angular/core'; import {HeaderComponent} from "../header/header.component"; import {RouterLink} from '@angular/router'; import {ALTITUDE_VERSION} from '../constant'; @Component({ selector: 'app-guide', imports: [ HeaderComponent, RouterLink ], templateUrl: './guide.component.html', styleUrl: './guide.component.scss' }) export class GuideComponent { protected readonly ALTITUDE_VERSION = ALTITUDE_VERSION; }