init page projet

This commit is contained in:
Cédric OLIVIER
2026-05-22 17:48:06 +02:00
parent 286a0eca2e
commit c6cd273632
12 changed files with 360 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { Component } from '@angular/core';
import { RouterLink, RouterLinkActive } from '@angular/router';
@Component({
selector: 'app-menu',
imports: [RouterLink, RouterLinkActive],
templateUrl: './menu.html',
styleUrl: './menu.css',
})
export class Menu {
protected readonly menuItems = [
{ label: 'Accueil', path: '/home' },
{ label: 'Projet', path: '/project' },
];
}