refactor: remove docker folder, refactor frontend files
This commit is contained in:
parent
8b547eb05b
commit
34ff29c7ac
27 changed files with 94 additions and 192 deletions
|
@ -1,13 +1,12 @@
|
|||
import { ChangeDetectionStrategy, Component, inject, OnDestroy, OnInit } from '@angular/core';
|
||||
import { NgFor } from '@angular/common';
|
||||
import { NavbarComponent } from '@shared/components/navbar/navbar.component';
|
||||
import { RouterLink } from '@angular/router';
|
||||
import { AuthService } from '@service/auth.service';
|
||||
import {ChangeDetectionStrategy, Component, inject, OnDestroy, OnInit} from '@angular/core';
|
||||
import {NgFor} from '@angular/common';
|
||||
import {RouterLink} from '@angular/router';
|
||||
import {AuthService} from '@service/auth.service';
|
||||
|
||||
@Component({
|
||||
selector: 'app-landing-page',
|
||||
standalone: true,
|
||||
imports: [NavbarComponent, NgFor, RouterLink],
|
||||
imports: [NgFor, RouterLink],
|
||||
templateUrl: './landing.component.html',
|
||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||
})
|
||||
|
|
Reference in a new issue