profiles => format clean archi

This commit is contained in:
styve Lioumba
2025-10-20 20:34:45 +02:00
parent 4191ac1ed0
commit ef02c6a537
171 changed files with 25748 additions and 23863 deletions

View File

@@ -1,22 +1,18 @@
import {Component, Input} from '@angular/core';
import {Project} from "@app/shared/models/project";
import {JsonPipe} from "@angular/common";
import {environment} from "@env/environment";
import {RouterLink} from "@angular/router";
@Component({
selector: 'app-project-item',
standalone: true,
imports: [
JsonPipe,
RouterLink
],
templateUrl: './project-item.component.html',
styleUrl: './project-item.component.scss'
})
export class ProjectItemComponent {
protected readonly environment = environment;
@Input({required: true}) project: Project | undefined = undefined;
}
import { Component, Input } from '@angular/core';
import { Project } from '@app/shared/models/project';
import { JsonPipe } from '@angular/common';
import { environment } from '@env/environment';
import { RouterLink } from '@angular/router';
@Component({
selector: 'app-project-item',
standalone: true,
imports: [JsonPipe, RouterLink],
templateUrl: './project-item.component.html',
styleUrl: './project-item.component.scss',
})
export class ProjectItemComponent {
protected readonly environment = environment;
@Input({ required: true }) project: Project | undefined = undefined;
}