@page "/"
@using WebAssembly.Data
Welcome to AOW4 Game Reference
Basic game reference project developed with AI assisted coding and agents.
@foreach (var section in sections)
{
@if (section.Links.Any())
{
}
else
{
Coming soon...
}
}
@code {
private List sections = new();
protected override void OnInitialized()
{
sections = SectionsData.GetAllSections();
}
}