From bc6baec7c098bcaf26bc428bed700b3722ee5835 Mon Sep 17 00:00:00 2001 From: Flatlogic Bot Date: Thu, 11 Jun 2026 11:33:01 +0000 Subject: [PATCH] feat: clarify coaching process page --- frontend/src/pages/how-it-works.tsx | 90 ++++++++++++++++++++++++++++- 1 file changed, 88 insertions(+), 2 deletions(-) diff --git a/frontend/src/pages/how-it-works.tsx b/frontend/src/pages/how-it-works.tsx index 81702f0..acdc6b4 100644 --- a/frontend/src/pages/how-it-works.tsx +++ b/frontend/src/pages/how-it-works.tsx @@ -64,6 +64,34 @@ const weekSteps = [ }, ]; +const processSteps = [ + { + title: 'Assessment', + copy: 'A prospective client submits goals, role context, current pressure points, and what they want from coaching.', + output: 'Intake lead and prep context for the coach.', + }, + { + title: 'Coaching engagement', + copy: 'The coach converts the lead into a client workspace, runs sessions, and keeps relationship context in one place.', + output: 'Client profile, session history, resources, and commitments.', + }, + { + title: 'Session memory', + copy: 'After each session, the coach records or uploads audio, reviews the transcript, and generates a coach-owned memory draft.', + output: 'Summary, topics, commitments, homework, quotes, and private coach notes.', + }, + { + title: 'Approved follow-up', + copy: 'The coach edits what AI produced and chooses what becomes client-facing. Nothing is shared automatically.', + output: 'Approved notes, action items, resources, and follow-up copy.', + }, + { + title: 'Client portal', + copy: 'The client logs in to see only the work the coach approved: shared notes, commitments, reflections, and resources.', + output: 'A private client area that keeps progress visible between sessions.', + }, +]; + const deeperItems = [ [ 'Session Notes & Coaching Insights', @@ -444,10 +472,10 @@ export default function HowItWorks() { Start assessment - See your coaching week + See the process

@@ -455,6 +483,64 @@ export default function HowItWorks() {

+
+
+
+
+

The full coaching process

+

+ From public assessment to private client workspace. +

+

+ Founder-style coaching sites explain the offer. This + workspace connects that public offer to the operational flow + behind it: intake, client management, session memory, and + client follow-through. +

+
+ + Start assessment + + + View services + +
+
+ +
+ {processSteps.map((step, index) => ( +
+
+ {index + 1} +
+
+

{step.title}

+

+ {step.copy} +

+

+ {step.output} +

+
+
+ ))} +
+
+
+
+