Remove redundant home page container

Simplified the HTML structure by removing the unnecessary conditional wrapper for the home page component. The home page rendering logic is now handled directly by the router outlet.
This commit is contained in:
Teriuihi 2025-04-04 21:55:09 +02:00
parent 5737de3cfc
commit 5ac5b139c8

View File

@ -1,4 +1 @@
<router-outlet></router-outlet>
<div *ngIf="isHomePage()">
<app-home></app-home>
</div>