2025-11-19 11:08:30 +07:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
2025-11-19 18:30:35 +07:00
|
|
|
import { Router } from '@angular/router';
|
2025-11-19 11:08:30 +07:00
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'app-main-landing',
|
|
|
|
|
standalone: false,
|
|
|
|
|
templateUrl: './main-landing.component.html',
|
|
|
|
|
styleUrls: ['./main-landing.component.css']
|
|
|
|
|
})
|
|
|
|
|
export class MainLandingComponent implements OnInit {
|
|
|
|
|
|
|
|
|
|
constructor(
|
2025-11-19 18:30:35 +07:00
|
|
|
private router: Router
|
2025-11-19 11:08:30 +07:00
|
|
|
) {}
|
|
|
|
|
|
|
|
|
|
ngOnInit() {
|
2025-11-19 18:30:35 +07:00
|
|
|
|
2025-11-19 11:08:30 +07:00
|
|
|
}
|
|
|
|
|
|
2025-11-19 18:30:35 +07:00
|
|
|
|
|
|
|
|
navigate(path: string) {
|
|
|
|
|
this.router.navigate([path]);
|
|
|
|
|
}
|
2025-11-19 11:08:30 +07:00
|
|
|
}
|