Files
AOW4/AOW4/Data/SectionData.cs
T

49 lines
1.5 KiB
C#

namespace AOW4.Data;
public static class SectionsData
{
public static List<Section> GetAllSections()
{
return new List<Section>
{
new Section
{
Name = "Calculators",
Description = "Useful calculator tools for various computations",
Links = new List<SectionLink>
{
new SectionLink
{
Title = "Building Plan Calculator",
Url = "/building-calculator",
Description = "Simulate build order timing and gold income over turns."
}
}
},
new Section
{
Name = "References",
Description = "Reference materials and documentation",
Links = new List<SectionLink>
{
new SectionLink
{
Title = "Magic Materials Reference",
Url = "/references/magic-materials",
Description = "View the magic material dataset and bonuses in a reference table."
}
}
},
new Section
{
Name = "Learning",
Description = "Educational resources and learning materials",
Links = new List<SectionLink>
{
// Add learning links here in the future
}
}
};
}
}