WUT_Computer_Science/NotProgramming/STUP/makieta/src/app/introduction/introduction.component.html

15 lines
609 B
HTML
Raw Normal View History

2024-05-30 16:44:48 +02:00
<div class="container">
2024-05-30 18:10:13 +02:00
<mat-card>
<mat-card-header class="flex-header">
<mat-card-title class="title"> <img mat-card-avatar class="logo" src="assets/logo.jpg" alt="logo image">
</mat-card-title>
</mat-card-header>
<mat-card-content>
<p class="instruction-text">After clicking play you will see a simple game assesing your problem solving skills, good luck and have fun :)</p>
</mat-card-content>
<mat-card-actions>
<button class="game-button" mat-flat-button color="primary" [routerLink]="'/game'">Play</button>
</mat-card-actions>
</mat-card>
</div>