diff --git a/frontend/src/pages/index.tsx b/frontend/src/pages/index.tsx index 617876e..b8b3832 100644 --- a/frontend/src/pages/index.tsx +++ b/frontend/src/pages/index.tsx @@ -44,6 +44,30 @@ const stats = [ ], ]; +const audiences = [ + [ + 'Founders in transition', + 'Leaders moving from founder-led decisions to a stronger operating team.', + ], + [ + 'Senior operators', + 'Executives carrying complex teams, unclear ownership, and pressure from every side.', + ], + [ + 'Leadership teams', + 'Small teams that need cleaner decision rights, meeting rhythm, and follow-through.', + ], +]; + +const specialties = [ + 'Delegation and decision rights', + 'Founder visibility and executive presence', + 'Operating rhythm and accountability', + 'Difficult conversations and feedback', + 'Board, investor, and senior-team communication', + 'Leadership transition from doing to leading', +]; + const workflow = [ [ 'After every session', @@ -338,6 +362,43 @@ export default function Starter() { +
+
+
+

Who this is for

+

+ Coaching for leaders who need the work to continue after the call. +

+

+ The public site should make the coach's niche obvious before + a visitor reaches the intake form. These starter segments and + specialties can be personalized for each coach. +

+
+
+ {audiences.map(([title, copy]) => ( +
+

{title}

+

{copy}

+
+ ))} +
+
+ +
+ {specialties.map((item) => ( +
+ {item} +
+ ))} +
+
+