refactor: remove docker folder, refactor frontend files

This commit is contained in:
Phan Huy Tran 2025-05-14 09:33:38 +02:00
commit 34ff29c7ac
27 changed files with 94 additions and 192 deletions

View file

@ -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,
})