From f0c38da78409bf40dba83f3a3c4357037f6cb5a4 Mon Sep 17 00:00:00 2001 From: Till JS Date: Fri, 17 Apr 2026 14:51:37 +0200 Subject: [PATCH] feat(rituals): switch icon from Lightning to ArrowClockwise MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Lightning was inherited from the ai-rituals era (AI-feature vibe) and didn't match what rituals actually express — recurring, cyclical practice. ArrowClockwise reads as "loop / recurrence / do this regularly", which fits both utility and ceremony flavours. Lightning is kept for `automations` (still the right match there). Co-Authored-By: Claude Opus 4.7 (1M context) --- apps/mana/apps/web/src/lib/app-registry/apps.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/mana/apps/web/src/lib/app-registry/apps.ts b/apps/mana/apps/web/src/lib/app-registry/apps.ts index cbe1247bc..24804d624 100644 --- a/apps/mana/apps/web/src/lib/app-registry/apps.ts +++ b/apps/mana/apps/web/src/lib/app-registry/apps.ts @@ -74,6 +74,7 @@ import { ShootingStar, CloudSun, Stack, + ArrowClockwise, } from '@mana/shared-icons'; // ── Apps with entity capabilities ─────────────────────────── @@ -1044,7 +1045,7 @@ registerApp({ id: 'rituals', name: 'Rituale', color: '#EC4899', - icon: Lightning, + icon: ArrowClockwise, views: { list: { load: () => import('$lib/modules/rituals/ListView.svelte') }, },