Initial Commit

This commit is contained in:
2026-05-29 14:17:46 -04:00
commit b7d0676d5b
498 changed files with 30308 additions and 0 deletions
+53
View File
@@ -0,0 +1,53 @@
using System.Collections.Generic;
namespace Model.Website.Data;
public class WebsiteData
{
public static List<WebPageModel> GetPages()
{
return
[
new WebPageModel
{
Id = 2,
WebSectionModelId = 2,
Name = "Build Calculator",
Description = "Build order calculator for determining army timings",
Href = "build-calculator",
IsPrivate = "False",
Icon = "fa-solid fa-helmet-battle"
},
new WebPageModel
{
Id = 1,
WebSectionModelId = 2,
Name = "Database",
Description = "Database of game information",
Href = "database",
IsPrivate = "False",
Icon = "fa-solid fa-clipboard-list"
},
new WebPageModel
{
Id = 3,
WebSectionModelId = 2,
Name = "Harass Calculator",
Description = "Database of game information",
Href = "harass-calculator",
IsPrivate = "False",
Icon = "fa-solid fa-bow-arrow"
},
new WebPageModel
{
Id = 4,
WebSectionModelId = 2,
Name = "Data Tables",
Description = "Data tables",
Href = "data-tables",
IsPrivate = "False",
Icon = "fa-solid fa-table-list"
}
];
}
}