From ff98eb3cd8b21901c5c4af958eeaf8562b3bcbf3 Mon Sep 17 00:00:00 2001 From: SaelixCode Date: Fri, 3 Jul 2026 14:16:52 -0400 Subject: [PATCH] fix: standardize Blueprint empty state headings to font-heading Replaced manual font-serif [font-style:var(--heading-style)] with the font-heading class on the main heading and three step titles so the Deployments empty state follows the same heading convention as the rest of the app and respects the Calm/Signature theme toggle. --- frontend/src/components/blueprints/BlueprintEmptyState.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/blueprints/BlueprintEmptyState.tsx b/frontend/src/components/blueprints/BlueprintEmptyState.tsx index 25c693e2..4b7113ae 100644 --- a/frontend/src/components/blueprints/BlueprintEmptyState.tsx +++ b/frontend/src/components/blueprints/BlueprintEmptyState.tsx @@ -16,7 +16,7 @@ export function BlueprintEmptyState({ onCreate, canCreate }: BlueprintEmptyState Deployments ยท Blueprints -

+

Declare once. Distribute everywhere.

@@ -47,7 +47,7 @@ function Step({ kicker, title, copy }: { kicker: string; title: string; copy: st return (

{kicker} - {title} + {title} {copy}
);