import React from 'react'; import type { ReactElement } from 'react'; import Head from 'next/head'; import Image from 'next/image'; import Link from 'next/link'; import PublicSiteNav from '../components/PublicSiteNav'; import { publicCoachSite } from '../coachingSite'; import LayoutGuest from '../layouts/Guest'; import { getPageTitle } from '../config'; const ui = { page: 'bg-[#fffdf9] text-[#19192d]', banner: 'bg-[#19192d] text-white', navShell: 'rounded-none bg-white ring-1 ring-[#19192d]/5', ink: 'text-[#19192d]', muted: 'text-[#72798a]', accent: 'text-[#35b7a5]', gold: 'text-[#35b7a5]', border: 'border-[#19192d]/10', surface: 'bg-white', softSurface: 'bg-[#fffdf9]', darkPanel: 'bg-[#19192d] text-white', darkMuted: 'text-white/70', button: 'bg-[#35b7a5] text-white transition hover:brightness-105', section: 'mx-auto max-w-7xl px-5 py-20 lg:px-8', card: 'rounded-none border border-[#19192d]/10 bg-white ', softCard: 'rounded-none border border-[#19192d]/10 bg-[#fffdf9]', overline: 'text-sm font-bold uppercase tracking-[0.28em] text-[#35b7a5]', heading: 'font-serif font-semibold tracking-tight text-[#19192d]', }; const trustItems = [ 'Coach-reviewed AI', 'Private client records', 'Built for coaching', ]; const stats = [ [ '30 min', 'saved after every session with structured notes and follow-up drafts', ], ['23 days', 'between sessions where client momentum needs support'], [ '6 outputs', 'summary, commitments, blockers, homework, prep, and client notes', ], ]; 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', 'Capture themes, commitments, patterns, and follow-up copy while the coach stays present.', ], [ 'Between sessions', 'Keep clients connected to approved notes, resources, and action items inside their portal.', ], [ 'Before the next session', 'Surface open commitments, recent patterns, and a focused opening question.', ], ]; const trustCards = [ [ 'Your method', 'Capture language, frameworks, and recurring patterns from real sessions.', ], [ 'Your approval', 'Review notes, prompts, resources, and messages before they reach the client.', ], [ 'Your data', 'Keep client records structured around confidentiality and role-based access.', ], [ 'Your client portal', 'Share only the commitments, resources, and reflections that move the work forward.', ], ]; function WaveDivider({ from = '#fffdf9', to = '#19192d', flip = false, }: { from?: string; to?: string; flip?: boolean; }) { return (
); } export default function Starter() { return ( <> {getPageTitle('Coaching Workspace')}

Still human

AI is not a coach. Keep the real relationship at the center.

Launch a modern coaching workspace. Open workspace

For leadership and executive coaches

What happens when your best coaching{' '} keeps going.

Show up fully present. No note-taking. No admin. Your workspace captures what makes your coaching yours, so clients stay connected to the work between sessions.

Book assessment

$14/client/month. Everything included.

{trustItems.map((item) => ( {item} ))}
Executive coach and founder in a focused coaching conversation

Session insights

Maya Chen · Session 4

Review
{[ 'Delegation trust', 'Decision rights', 'Founder visibility', ].map((topic) => (

{topic}

))}

Commitments

  • Draft a decision-rights matrix before Friday.
  • Choose three decisions the team can own without founder approval.
  • Review customer escalation rules with the COO.

Pattern

Maya is moving from control as quality assurance toward explicit decision boundaries.

Follow-up draft

This week is about making delegation visible enough that trust can become operational.

{stats.map(([value, label]) => (

{value}

{label}

))}

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}
))}

The new practice rhythm

Before, between, and after every session.

{workflow.map(([title, copy], index) => (
{index + 1}

{title}

{copy}

))}

Session memory

Stop opening old notes before every call.

The workspace pulls together open commitments, themes across sessions, client messages, and a suggested opening question. You review everything first.

{[ 'Open commitments', 'Client patterns', 'Shared notes', 'Prep questions', ].map((item) => (

{item}

))}

Session prep

Maya Chen · Session 5

Ready when you are
{[ ['4', 'messages'], ['2', 'open commitments'], ['3', 'goals in focus'], ].map(([value, label]) => (

{value}

{label}

))}

Top thread

Decision rights are clear on paper, but still feel risky in practice.

The last two sessions both returned to trust, escalation rules, and what Maya needs to see before stepping back.

Suggested opening

“Where did delegation feel cleaner this week, and where did your body still want to take the wheel?”

Coach supervised

The AI proposes. The coach decides.

Private notes stay private. Shared notes are approved. Client-facing content carries the coach's voice, not a generic chatbot voice.

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

{title}

{copy}

))}

Built with coaches

Designed for real client work.

Book assessment
{publicCoachSite.testimonials.map((item) => (
“{item.quote}”

{item.name}

{item.role}

))}

Template package

Launch a coaching practice with the workspace already inside.

Executive Momentum

A ready-made package page, client records, session memory, prep briefs, resources, and portal flow.

{[ '6 coaching sessions', 'AI-assisted session notes', 'Shared resources', 'Client portal access', ].map((item) => (
{item}
))}
Book assessment
); } Starter.getLayout = function getLayout(page: ReactElement) { return {page}; };