| 1 | namespace AgentForge.Plugin.View.Components; |
| 2 | |
| 3 | public static class ForgeViewLogo |
| 4 | { |
| 5 | public static string Render() => |
| 6 | ForgeHtml.Div("page-hero-logo", |
| 7 | ForgeHtml.ARaw( |
| 8 | "/view", |
| 9 | "brand page-brand", |
| 10 | null, |
| 11 | null, |
| 12 | ForgeHtml.Mark("brand-mark page-brand-mark", "⚒"), |
| 13 | ForgeHtml.Span("brand-text", ForgeHtml.Text("Forge")))); |
| 14 | } |
| 15 |