device simulator

This commit is contained in:
2026-06-08 19:43:17 +08:00
parent 700bb135ad
commit ad6403f3e4
10 changed files with 1988 additions and 1 deletions

View File

@@ -433,6 +433,7 @@ var navItems = []navItem{
{Path: "/mraid", Label: "MRAID Checker", Description: "Check MRAID requirements and best practices"},
{Path: "/mintegral", Label: "Mintegral Checker", Description: "Validate Mintegral playable ZIPs against PlayTurbo checks"},
{Path: "/playworks", Label: "Playworks Converter", Description: "Convert Playworks HTML to per-network variants", Beta: true},
{Path: "/device-simulator", Label: "Device Simulator", Description: "Preview HTML playables inside mobile device frames"},
}
func visibleNavItems(betaToolsEnabled bool) []navItem {
@@ -476,6 +477,8 @@ func navInitials(label string) string {
return "APP"
case "Mintegral Checker":
return "MiC"
case "Device Simulator":
return "SIM"
}
words := strings.Fields(label)
if len(words) == 0 {