Mise en ligne de la version 0.2.0
All checks were successful
Build & Push Images / build (brain) (push) Successful in 46s
Build & Push Images / build (core) (push) Successful in 1m21s
Build & Push Images / build (web) (push) Successful in 1m25s

This commit is contained in:
2026-04-21 14:25:17 +02:00
parent ebee8e106b
commit ba8a503b3e
300 changed files with 35329 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
<div class="app-container">
<app-sidebar></app-sidebar>
<ng-container *ngIf="sidebarConfig$ | async as config">
<app-secondary-sidebar
[title]="config.title"
[items]="config.items"
[createActions]="config.createActions"
[bottomPanel]="config.bottomPanel || null">
</app-secondary-sidebar>
</ng-container>
<main class="main-content">
<router-outlet></router-outlet>
</main>
</div>
<app-global-search></app-global-search>