| 1 | namespace AgentForge.Plugin.View.Components; |
| 2 | |
| 3 | public static class ForgeViewEmptyState |
| 4 | { |
| 5 | public static string Render(string message) => |
| 6 | ForgeHtml.P("meta", ForgeHtml.Text(message)); |
| 7 | |
| 8 | public static string RenderCreateRepoHint() => |
| 9 | ForgeHtml.P("meta", |
| 10 | ForgeHtml.Text("No repositories yet. Use API or MCP "), |
| 11 | ForgeHtml.Code("create_repo"), |
| 12 | ForgeHtml.Text(".")); |
| 13 | } |
| 14 |