From ac558d0a8e4c2f1e60e59fed3bfe3373917b73df Mon Sep 17 00:00:00 2001 From: kumarabhirup Date: Thu, 12 Feb 2026 23:00:44 -0800 Subject: [PATCH] rebrand: replace Dench references with Ironclaw in web app and bump to 2026.2.10-1.11 --- apps/web/app/components/chat-message.tsx | 4 ++-- apps/web/app/layout.tsx | 4 ++-- apps/web/app/page.tsx | 2 +- package.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/web/app/components/chat-message.tsx b/apps/web/app/components/chat-message.tsx index b7b63acd779..04e73ca92f4 100644 --- a/apps/web/app/components/chat-message.tsx +++ b/apps/web/app/components/chat-message.tsx @@ -179,14 +179,14 @@ const mdComponents: Components = { ), }; -/* ─── Chat message (Dench-inspired free-flowing text) ─── */ +/* ─── Chat message ─── */ export function ChatMessage({ message }: { message: UIMessage }) { const isUser = message.role === "user"; const segments = groupParts(message.parts); if (isUser) { - // User: right-aligned subtle pill (like Dench) + // User: right-aligned subtle pill const textContent = segments .filter( (s): s is { type: "text"; text: string } => diff --git a/apps/web/app/layout.tsx b/apps/web/app/layout.tsx index 08c08731868..afb0b5cfa81 100644 --- a/apps/web/app/layout.tsx +++ b/apps/web/app/layout.tsx @@ -2,9 +2,9 @@ import type { Metadata } from "next"; import "./globals.css"; export const metadata: Metadata = { - title: "Dench", + title: "Ironclaw", description: - "AI CRM with an agent that connects to your apps and does the work for you", + "AI Workspace with an agent that connects to your apps and does the work for you", }; export default function RootLayout({ diff --git a/apps/web/app/page.tsx b/apps/web/app/page.tsx index 38741410981..210a5be4bd7 100644 --- a/apps/web/app/page.tsx +++ b/apps/web/app/page.tsx @@ -39,7 +39,7 @@ export default function Home() { className="font-instrument text-5xl md:text-6xl tracking-tight mb-3 text-center" style={{ color: "var(--color-text)" }} > - Dench + Ironclaw {/* Tagline */} diff --git a/package.json b/package.json index 47561069a18..8ba9b46b43f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ironclaw", - "version": "2026.2.10-1.10", + "version": "2026.2.10-1.11", "description": "AI-powered CRM platform with multi-channel agent gateway, DuckDB workspace, and knowledge management", "keywords": [], "license": "MIT",