From 4e13cf069a58aa1b57d1b8270ee2e34fd8415077 Mon Sep 17 00:00:00 2001 From: Artemisia Date: Wed, 11 Mar 2026 13:23:20 -0700 Subject: [PATCH] fix: update wordmark link to correct domain --- src/editor/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editor/index.ts b/src/editor/index.ts index 2e1fe65..c1a342f 100644 --- a/src/editor/index.ts +++ b/src/editor/index.ts @@ -3340,7 +3340,7 @@ class ProofEditorImpl implements ProofEditor { const wordmark = document.createElement('a'); wordmark.textContent = 'Proof'; - wordmark.href = 'https://proof.com'; + wordmark.href = 'https://proofeditor.ai'; wordmark.target = '_blank'; wordmark.rel = 'noopener'; wordmark.style.cssText = 'display:inline-flex;align-items:center;justify-content:center;min-height:44px;min-width:44px;padding:0 8px;border-radius:10px;font-weight:600;color:#333;font-size:13px;letter-spacing:-0.2px;flex-shrink:0;text-decoration:none;';