yo/src/app/app.component.html

10 lines
250 B
HTML
Raw Normal View History

2024-11-13 10:04:49 +01:00
<div class="container">
2024-11-13 10:17:58 +01:00
<div class="text-center my-4">
<a [routerLink]="['/']" class="display-4 text-decoration-none fw-bold text-primary hover:text-decoration-underline">
Homes
</a>
</div>
2024-11-13 10:04:49 +01:00
2024-11-13 10:17:58 +01:00
<router-outlet></router-outlet>
2024-11-13 10:04:49 +01:00
</div>