import { Component } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: 'app.component.html', styleUrls: ['app.component.scss'], }) export class AppComponent { public appPages = [ { title: 'Home', url: '/cover', icon: 'home' }, { title: 'Identitas', url: '/identitas', icon: 'people' }, { title: 'Pengukuran', url: '/pemeriksaan', icon: 'thermometer' }, { title: 'Tabel Pengukuran', url: '/tabel', icon: 'reader' }, { title: 'Grafik Pengukuran', url: '/indikator', icon: 'stats-chart' }, { title: 'Tips', url: '/tips', icon: 'bulb' }, { title: 'Tentang Kami', url: '/tentang-kami', icon: 'information-circle' }, ]; constructor() {} }