import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-main-landing', standalone: false, templateUrl: './main-landing.component.html', styleUrls: ['./main-landing.component.css'] }) export class MainLandingComponent implements OnInit { constructor( ) {} ngOnInit() { } }