Several updates have been done in different pages of the app for improved performance and user experience. This includes content changes in the `Identitas` page, updates in the layout and reduction of complex code in the `Tabel` page. There's also a modification in app navigation options and application of gradient color themes in graphs displayed on the `grafik` page.
20 lines
694 B
TypeScript
20 lines
694 B
TypeScript
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() {}
|
|
}
|