Ajout d'un affichage des informations dans la modale

This commit is contained in:
Quentin Millardet
2024-01-27 19:54:09 +01:00
parent 33fbd479db
commit 854cb672df
35 changed files with 14187 additions and 1056 deletions

View File

View File

@@ -0,0 +1,6 @@
<p>home works!</p>
<a [routerLink]="['/device-list']">
<header class="brand-name">
<img class="brand-logo" [src]="icon" alt="logo" aria-hidden="true">
</header>
</a>

View File

@@ -0,0 +1,15 @@
import { Component } from '@angular/core';
import { RouterModule } from '@angular/router';
@Component({
selector: 'app-home',
standalone: true,
imports: [RouterModule],
templateUrl: './home.component.html',
styleUrl: './home.component.css'
})
export class HomeComponent {
icon: string = "/logo.ico"
}