You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.6 KiB
53 lines
1.6 KiB
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" |
|
} |
|
]; |
|
} |
|
} |