You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
657 B
32 lines
657 B
@layout PageLayout |
|
|
|
@inherits BasePage |
|
|
|
@inject IDataCollectionService DataCollectionService |
|
|
|
@page "/roadmap" |
|
|
|
<LayoutMediumContentComponent> |
|
<WebsiteTitleComponent>Road Map</WebsiteTitleComponent> |
|
|
|
<div class="roadMapsContainer"> |
|
@foreach (var roadMap in data) |
|
{ |
|
<RoadMapComponent RoadMap=roadMap/> |
|
} |
|
</div> |
|
</LayoutMediumContentComponent> |
|
|
|
<style> |
|
.roadMapsContainer { |
|
display: flex; |
|
gap: 20px; |
|
flex-wrap: wrap; |
|
align-items: stretch; |
|
justify-content: center; |
|
} |
|
</style> |
|
|
|
@code { |
|
readonly List<ImmortalRoadMapModel> data = ImmortalRoadMapModel.Data; |
|
} |