53 lines
1.6 KiB
C#
53 lines
1.6 KiB
C#
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"
|
|
}
|
|
];
|
|
}
|
|
} |