17 lines
763 B
Plaintext
17 lines
763 B
Plaintext
@page "/Advanced"
|
|
@inject NavigationManager NavigationManager
|
|
|
|
<h1 class="page-title">Advanced Features</h1>
|
|
|
|
<div class="library-card-container">
|
|
<NavLink class="card" onclick="@(() => { NavigationManager.NavigateTo("/szf-editor"); })">
|
|
<img src="res/icons/outline/general/edit.svg" class="icon" />
|
|
<h1>SZF Editor</h1>
|
|
<p>Manually create and edit SZF files with syntax highlighting and basic linting</p>
|
|
</NavLink>
|
|
<NavLink class="card" onclick="@(() => { NavigationManager.NavigateTo("/szf-parser-test"); })">
|
|
<img src="res/icons/outline/general/bug.svg" class="icon"/>
|
|
<h1>SZF Testing Grounds</h1>
|
|
<p>Internal development tool for testing SZF parsing, saving, and retrieving</p>
|
|
</NavLink>
|
|
</div> |