diff --git a/assets/pasted-20260325-171621-4f479448.png b/assets/pasted-20260325-171621-4f479448.png new file mode 100644 index 0000000..1896124 Binary files /dev/null and b/assets/pasted-20260325-171621-4f479448.png differ diff --git a/assets/pasted-20260325-172617-01159868.png b/assets/pasted-20260325-172617-01159868.png new file mode 100644 index 0000000..1896124 Binary files /dev/null and b/assets/pasted-20260325-172617-01159868.png differ diff --git a/block1_html.html b/block1_html.html new file mode 100644 index 0000000..dfb5caf --- /dev/null +++ b/block1_html.html @@ -0,0 +1,201 @@ + + + +
+
+ + +
+
+ +
+
+ +
+

+ Kevin McKeand CoachingKevin McKeand Coaching
+ Enabling Others To Achieve Their Potential +

+
+

Coaching for C-Level Executives who want to breakthrough and achieve the impossible in their business, navigating their organizations with clarity, reduced complexity and with more purpose.

+ + Schedule an assessment +
+ +
+
+
+
+ +
+ +
+ +
+
\ No newline at end of file diff --git a/fix_home_block1.html b/fix_home_block1.html new file mode 100644 index 0000000..1e2a0cf --- /dev/null +++ b/fix_home_block1.html @@ -0,0 +1,1431 @@ + + + +
+
+ + +
+
+

Kevin McKeand Coaching
Enabling Others To Achieve
Their Potential

+
+

Coaching for C-Level Executives who want to breakthrough and achieve the impossible in their business, navigating their organizations with clarity, reduced complexity and with more purpose.

+ + Schedule an assessment + + +
+
+ +
+ +
+
+
+ + +
+
+
+

Executive and Life Coaching to Achieve Your Potential

+

Purpose: enable others to achieve their potential

+

Coaching for C-Level Executives who want to breakthrough and achieve the impossible in their business, navigating their organizations with clarity, reduced complexity and with more purpose.

+ +
+
+
+ Executive coaching infographic +
+
+
+
+ + + + + +
+
+ +
+

Specialty

+
    +
  • + +
    +

    VC & PE Partnership

    +

    I coach portfolio founders and CEOs to drive exponential valuation growth by transforming “impossible” ambitions into measurable professional outcomes.

    +
    +
  • +
  • + +
    +

    Leadership Alignment

    +

    Following CEO transformation, I align senior leadership teams to ensure the entire organization moves with singular, high-velocity purpose toward a transformed future.

    +
    +
  • +
+
+ +
+

Credentials

+
    +
  • + +
    +

    Certified

    +

    ICF PCC Certified Executive and Life Coach

    +
    +
  • +
  • + +
    +

    Trained

    +

    Trained in Adaptive Leadership Styles and Personal and Professional Transformations

    +
    +
  • +
+
+ Confidential + Insightful + Practical +
+
+ +
+
+ + + + + + + +
+
+
+

How We Work
Together

+ +
+
+

01

+
+

Clarity & Context

+

Identify the real challenge beneath the symptom, and name the narrative shaping your decisions.

+
+
+
+

02

+
+

Adaptive Experiments

+

Design small experiments to expand capability, build confidence, and improve leadership presence.

+
+
+
+

03

+
+

Integration & Accountability

+

Apply new behaviors in your real-world environment and reflect on the results.

+
+
+
+ + + Schedule an assessment + + +
+ +
+ Collaborative team working around a wooden table with laptops +
+
+
+ + + + + + + +
+
+

What They’re Saying

+ +
+
+

“Clear, grounding, and strategic. I left each session with a concrete action and a deeper sense of purpose.”

+
+ Client profile photo +
+

Client Name

+

CEO and B2B SaaS Founder

+
+
+
+ +
+

“Helped me reframe my leadership narrative and show up with more authority.”

+
+ Client profile photo +
+

Client Name

+

Founder and CEO

+
+
+
+
+
+
+ + + + + + + + +
+
+
+

Sample Outcomes Clients Seek

+

Coaching is a partnership designed for growth — outcomes depend on commitment and context.

+ + +
+ +
+
+ +

Executive Reinvention, driven by ontological changes

+
+ +
+ +

Working with a team of people to achieve what is considered impossible today

+
+ +
+ +

Identify your winning strategy and what’s holding you back from leading a team to achieve the impossible

+
+
+
+
+ + + + + + + + + +
+
+
+

Pricing

+

Let me know if you’re interested in longer term engagements or group coaching.

+
+ +
+
+

Initial Assessment

+
+ Free +
+

30 minutes

+ Book Now +
+ +
+ Most Popular +

Coaching

+
+ $500 + / hour +
+

Minimum of 1 hour

+ Book Now +
+ +
+

Coaching Package

+
+ $1,600 + / month +
+

Includes 4 hours of coaching

+ Book Now +
+
+
+
+ + + + + + + + +
+
+
+

Ready to explore coaching?

+

Start with a 30-minute fit call to assess alignment, goals, and the best coaching path

+ +
+ + +
+
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/fix_home_block1.py b/fix_home_block1.py new file mode 100644 index 0000000..231cf76 --- /dev/null +++ b/fix_home_block1.py @@ -0,0 +1,31 @@ +import sys + +with open('tmp_home.html', 'r', encoding='utf-8') as f: + content = f.read() + +# Fix duplicated text +content = content.replace( + 'Kevin McKeand CoachingKevin McKeand Coaching', + 'Kevin McKeand Coaching' +) + +# Fix logo size +content = content.replace( + "font-size: clamp(24px, 2.2vw, 36px);", + "font-size: clamp(16px, 1.8vw, 20px);" +) + +# Fix top spacing more aggressively +old_css_part = "body.home .wp-site-blocks { padding-top: 0 !important; }" +new_css_part = """body.home .wp-site-blocks { padding-top: 0 !important; margin-top: 0 !important; } +body.home main { margin-top: 0 !important; padding-top: 0 !important; } +body.home { margin-top: 0 !important; padding-top: 0 !important; }""" + +if old_css_part in content: + content = content.replace(old_css_part, new_css_part) +else: + content = content.replace("body { background: #1C3434; }", new_css_part + "\nbody { background: #1C3434; }") + +with open('tmp_home_fixed.html', 'w', encoding='utf-8') as f: + f.write(content) + diff --git a/fix_home_block1_step2.py b/fix_home_block1_step2.py new file mode 100644 index 0000000..fafc963 --- /dev/null +++ b/fix_home_block1_step2.py @@ -0,0 +1,18 @@ +import sys + +with open('tmp_home_fixed.html', 'r', encoding='utf-8') as f: + content = f.read() + +# Fix mobile logo size +content = content.replace( + ".kmc-new-logo { font-size: 24px; }", + ".kmc-new-logo { font-size: 18px; }" +) + +content = content.replace( + "top: 0;", + "top: var(--wp-admin--admin-bar--height, 0px);" +) + +with open('tmp_home_fixed2.html', 'w', encoding='utf-8') as f: + f.write(content) diff --git a/fix_home_block1_step3.py b/fix_home_block1_step3.py new file mode 100644 index 0000000..edd884f --- /dev/null +++ b/fix_home_block1_step3.py @@ -0,0 +1,24 @@ +import sys + +with open('tmp_home_fixed2.html', 'r', encoding='utf-8') as f: + content = f.read() + +new_css = """ +body.home .wp-site-blocks, +body.home main, +body.home .entry-content, +body.home .wp-block-post-content, +body.home .type-page { + padding-top: 0 !important; + margin-top: 0 !important; +} +body.home .kmc-landing { + margin-top: 0 !important; + padding-top: 0 !important; +} +""" + +content = content.replace("body.home main { margin-top: 0 !important; padding-top: 0 !important; }", new_css) + +with open('tmp_home_final.html', 'w', encoding='utf-8') as f: + f.write(content) diff --git a/tmp_home.html b/tmp_home.html index 9691d66..f6f306b 100644 --- a/tmp_home.html +++ b/tmp_home.html @@ -1,254 +1,1600 @@ + +
+ + + +
+ +
+ +
+
+ +
+

+ Kevin McKeand CoachingKevin McKeand Coaching
+ Enabling Others To Achieve Their Potential +

+
+

Coaching for C-Level Executives who want to breakthrough and achieve the impossible in their business, navigating their organizations with clarity, reduced complexity and with more purpose.

+ + Schedule an assessment +
+ +
+
+
+
+ +
+ +
+ +
+
+ + + +
+
+
+

Executive and Life Coaching to Achieve Your Potential

+

Purpose: enable others to achieve their potential

+

Coaching for C-Level Executives who want to breakthrough and achieve the impossible in their business, navigating their organizations with clarity, reduced complexity and with more purpose.

+ +
+
+
+ Executive coaching infographic +
+
+
+
+ + + + + +
+
+ +
+

Specialty

+
    +
  • + +
    +

    VC & PE Partnership

    +

    I coach portfolio founders and CEOs to drive exponential valuation growth by transforming “impossible” ambitions into measurable professional outcomes.

    +
    +
  • +
  • + +
    +

    Leadership Alignment

    +

    Following CEO transformation, I align senior leadership teams to ensure the entire organization moves with singular, high-velocity purpose toward a transformed future.

    +
    +
  • +
+
+ +
+

Credentials

+
    +
  • + +
    +

    Certified

    +

    ICF PCC Certified Executive and Life Coach

    +
    +
  • +
  • + +
    +

    Trained

    +

    Trained in Adaptive Leadership Styles and Personal and Professional Transformations

    +
    +
  • +
+
+ Confidential + Insightful + Practical +
+
+ +
+
+ + + + + + + +
+
+
+

How We Work
Together

+ +
+
+

01

+
+

Clarity & Context

+

Identify the real challenge beneath the symptom, and name the narrative shaping your decisions.

+
+
+
+

02

+
+

Adaptive Experiments

+

Design small experiments to expand capability, build confidence, and improve leadership presence.

+
+
+
+

03

+
+

Integration & Accountability

+

Apply new behaviors in your real-world environment and reflect on the results.

+
+
+
+ + + Schedule an assessment + + +
+ +
+ Collaborative team working around a wooden table with laptops +
+
+
+ + + + + + + +
+
+

What They’re Saying

+ +
+
+

“Clear, grounding, and strategic. I left each session with a concrete action and a deeper sense of purpose.”

+
+ Client profile photo +
+

Client Name

+

CEO and B2B SaaS Founder

+
+
+
+ +
+

“Helped me reframe my leadership narrative and show up with more authority.”

+
+ Client profile photo +
+

Client Name

+

Founder and CEO

+
+
+
+
+
+
+ + + + + + + + +
+
+
+

Sample Outcomes Clients Seek

+

Coaching is a partnership designed for growth — outcomes depend on commitment and context.

+ + +
+ +
+
+ +

Executive Reinvention, driven by ontological changes

+
+ +
+ +

Working with a team of people to achieve what is considered impossible today

+
+ +
+ +

Identify your winning strategy and what’s holding you back from leading a team to achieve the impossible

+
+
+
+
+ + + + + + + + + +
+
+
+

Pricing

+

Let me know if you’re interested in longer term engagements or group coaching.

+
+ +
+
+

Initial Assessment

+
+ Free +
+

30 minutes

+ Book Now +
+ +
+ Most Popular +

Coaching

+
+ $500 + / hour +
+

Minimum of 1 hour

+ Book Now +
+ +
+

Coaching Package

+
+ $1,600 + / month +
+

Includes 4 hours of coaching

+ Book Now +
+
+
+
+ + + + + + + + +
+
+
+

Ready to explore coaching?

+

Start with a 30-minute fit call to assess alignment, goals, and the best coaching path

+ +
+ + +
+
+ + +
- -
- -

Enabling Others To Achieve Their Potential

- - - - - - - -
- - - - - - - -
-https://youtu.be/holm_xPlV_k -
- -
- - - -
- -
-
-

Executive and Life Coaching to Achieve your Potential

- - -

Coaching for C-Level Executives who want to breakthrough and achieve the impossible in their business, navigating their organizations with clarity, reduced complexity and with more purpose.

- - - - - -

Purpose: enable others to achieve their potential.

-
- - -
-
-

Specialty

- - - -
  • VC & PE Partnership: I coach portfolio founders and CEOs to drive exponential valuation growth by transforming "impossible" ambitions into measurable professional outcomes.
  • Leadership Alignment: Following CEO transformation, I align senior leadership teams to ensure the entire organization moves with singular, high-velocity purpose toward a transformed future.
- - - -

Credentials

- - -
  • ICF PCC Certified Executive and Life Coach
  • Trained in Adaptive Leadership Styles and Personal and Professional Transformations
- - -

Confidential. Insightful. Practical.

-
-
-
- -
- - - -
- -

How we work together

- - -
-
-
-

1. Clarity & context

- - -

Identify the real challenge beneath the symptom, and name the narrative shaping your decisions.

-
-
- - -
-
-

2. Adaptive experiments

- - -

Design small experiments to expand capability, build confidence, and improve leadership presence.

-
-
- - -
-
-

3. Integration & accountability

- - -

Apply new behaviors in your real-world environment and reflect on the results.

-
-
-
- -
- - - -
- - -
- -

Sample outcomes clients seek

- - - - - -

Coaching is a partnership designed for growth — outcomes depend on commitment and context.

- -
- - - -
- -

What they're Saying

- - -
-
-

“Clear, grounding, and strategic. I left each session with a concrete action and a deeper sense of purpose.”

- - -

— CEO and B2B SaaS Founder

-
- - -
-

“Helped me reframe my leadership narrative and show up with more authority.”

- - -

— Founder and CEO

-
-
- -
- - -
- - - -
- - -
- -

Pricing

- - -
- -
-
-

Initial Assessment

- - -

Free

- - -

30 minutes

- - - -
-
- - -
-
-

Coaching

- - -

$500 / hour

- - -

Minimum of one hour

- - - -
-
- - -
-
-

Coaching Package

- - -

$1,500 / month

- - - - - -

Includes 4 hours of coaching

-
-
- -
- -
- - - -
- -

Ready to explore coaching?

- - -

Start with a 30‑minute fit call to assess alignment, goals, and the best coaching path.

- - - - -
- - -
- + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tmp_home_content.html b/tmp_home_content.html new file mode 100644 index 0000000..f6f306b --- /dev/null +++ b/tmp_home_content.html @@ -0,0 +1,1600 @@ + + + +
+ + + +
+ +
+ +
+
+ +
+

+ Kevin McKeand CoachingKevin McKeand Coaching
+ Enabling Others To Achieve Their Potential +

+
+

Coaching for C-Level Executives who want to breakthrough and achieve the impossible in their business, navigating their organizations with clarity, reduced complexity and with more purpose.

+ + Schedule an assessment +
+ +
+
+
+
+ +
+ +
+ +
+
+ + + +
+
+
+

Executive and Life Coaching to Achieve Your Potential

+

Purpose: enable others to achieve their potential

+

Coaching for C-Level Executives who want to breakthrough and achieve the impossible in their business, navigating their organizations with clarity, reduced complexity and with more purpose.

+ +
+
+
+ Executive coaching infographic +
+
+
+
+ + + + + +
+
+ +
+

Specialty

+
    +
  • + +
    +

    VC & PE Partnership

    +

    I coach portfolio founders and CEOs to drive exponential valuation growth by transforming “impossible” ambitions into measurable professional outcomes.

    +
    +
  • +
  • + +
    +

    Leadership Alignment

    +

    Following CEO transformation, I align senior leadership teams to ensure the entire organization moves with singular, high-velocity purpose toward a transformed future.

    +
    +
  • +
+
+ +
+

Credentials

+
    +
  • + +
    +

    Certified

    +

    ICF PCC Certified Executive and Life Coach

    +
    +
  • +
  • + +
    +

    Trained

    +

    Trained in Adaptive Leadership Styles and Personal and Professional Transformations

    +
    +
  • +
+
+ Confidential + Insightful + Practical +
+
+ +
+
+ + + + + + + +
+
+
+

How We Work
Together

+ +
+
+

01

+
+

Clarity & Context

+

Identify the real challenge beneath the symptom, and name the narrative shaping your decisions.

+
+
+
+

02

+
+

Adaptive Experiments

+

Design small experiments to expand capability, build confidence, and improve leadership presence.

+
+
+
+

03

+
+

Integration & Accountability

+

Apply new behaviors in your real-world environment and reflect on the results.

+
+
+
+ + + Schedule an assessment + + +
+ +
+ Collaborative team working around a wooden table with laptops +
+
+
+ + + + + + + +
+
+

What They’re Saying

+ +
+
+

“Clear, grounding, and strategic. I left each session with a concrete action and a deeper sense of purpose.”

+
+ Client profile photo +
+

Client Name

+

CEO and B2B SaaS Founder

+
+
+
+ +
+

“Helped me reframe my leadership narrative and show up with more authority.”

+
+ Client profile photo +
+

Client Name

+

Founder and CEO

+
+
+
+
+
+
+ + + + + + + + +
+
+
+

Sample Outcomes Clients Seek

+

Coaching is a partnership designed for growth — outcomes depend on commitment and context.

+ + +
+ +
+
+ +

Executive Reinvention, driven by ontological changes

+
+ +
+ +

Working with a team of people to achieve what is considered impossible today

+
+ +
+ +

Identify your winning strategy and what’s holding you back from leading a team to achieve the impossible

+
+
+
+
+ + + + + + + + + +
+
+
+

Pricing

+

Let me know if you’re interested in longer term engagements or group coaching.

+
+ +
+
+

Initial Assessment

+
+ Free +
+

30 minutes

+ Book Now +
+ +
+ Most Popular +

Coaching

+
+ $500 + / hour +
+

Minimum of 1 hour

+ Book Now +
+ +
+

Coaching Package

+
+ $1,600 + / month +
+

Includes 4 hours of coaching

+ Book Now +
+
+
+
+ + + + + + + + +
+
+
+

Ready to explore coaching?

+

Start with a 30-minute fit call to assess alignment, goals, and the best coaching path

+ +
+ + +
+
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tmp_home_current_block1.html b/tmp_home_current_block1.html new file mode 100644 index 0000000..1e2a0cf --- /dev/null +++ b/tmp_home_current_block1.html @@ -0,0 +1,1431 @@ + + + +
+
+ + +
+
+

Kevin McKeand Coaching
Enabling Others To Achieve
Their Potential

+
+

Coaching for C-Level Executives who want to breakthrough and achieve the impossible in their business, navigating their organizations with clarity, reduced complexity and with more purpose.

+ + Schedule an assessment + + +
+
+ +
+ +
+
+
+ + +
+
+
+

Executive and Life Coaching to Achieve Your Potential

+

Purpose: enable others to achieve their potential

+

Coaching for C-Level Executives who want to breakthrough and achieve the impossible in their business, navigating their organizations with clarity, reduced complexity and with more purpose.

+ +
+
+
+ Executive coaching infographic +
+
+
+
+ + + + + +
+
+ +
+

Specialty

+
    +
  • + +
    +

    VC & PE Partnership

    +

    I coach portfolio founders and CEOs to drive exponential valuation growth by transforming “impossible” ambitions into measurable professional outcomes.

    +
    +
  • +
  • + +
    +

    Leadership Alignment

    +

    Following CEO transformation, I align senior leadership teams to ensure the entire organization moves with singular, high-velocity purpose toward a transformed future.

    +
    +
  • +
+
+ +
+

Credentials

+
    +
  • + +
    +

    Certified

    +

    ICF PCC Certified Executive and Life Coach

    +
    +
  • +
  • + +
    +

    Trained

    +

    Trained in Adaptive Leadership Styles and Personal and Professional Transformations

    +
    +
  • +
+
+ Confidential + Insightful + Practical +
+
+ +
+
+ + + + + + + +
+
+
+

How We Work
Together

+ +
+
+

01

+
+

Clarity & Context

+

Identify the real challenge beneath the symptom, and name the narrative shaping your decisions.

+
+
+
+

02

+
+

Adaptive Experiments

+

Design small experiments to expand capability, build confidence, and improve leadership presence.

+
+
+
+

03

+
+

Integration & Accountability

+

Apply new behaviors in your real-world environment and reflect on the results.

+
+
+
+ + + Schedule an assessment + + +
+ +
+ Collaborative team working around a wooden table with laptops +
+
+
+ + + + + + + +
+
+

What They’re Saying

+ +
+
+

“Clear, grounding, and strategic. I left each session with a concrete action and a deeper sense of purpose.”

+
+ Client profile photo +
+

Client Name

+

CEO and B2B SaaS Founder

+
+
+
+ +
+

“Helped me reframe my leadership narrative and show up with more authority.”

+
+ Client profile photo +
+

Client Name

+

Founder and CEO

+
+
+
+
+
+
+ + + + + + + + +
+
+
+

Sample Outcomes Clients Seek

+

Coaching is a partnership designed for growth — outcomes depend on commitment and context.

+ + +
+ +
+
+ +

Executive Reinvention, driven by ontological changes

+
+ +
+ +

Working with a team of people to achieve what is considered impossible today

+
+ +
+ +

Identify your winning strategy and what’s holding you back from leading a team to achieve the impossible

+
+
+
+
+ + + + + + + + + +
+
+
+

Pricing

+

Let me know if you’re interested in longer term engagements or group coaching.

+
+ +
+
+

Initial Assessment

+
+ Free +
+

30 minutes

+ Book Now +
+ +
+ Most Popular +

Coaching

+
+ $500 + / hour +
+

Minimum of 1 hour

+ Book Now +
+ +
+

Coaching Package

+
+ $1,600 + / month +
+

Includes 4 hours of coaching

+ Book Now +
+
+
+
+ + + + + + + + +
+
+
+

Ready to explore coaching?

+

Start with a 30-minute fit call to assess alignment, goals, and the best coaching path

+ +
+ + +
+
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tmp_home_final.html b/tmp_home_final.html index 6e5bf81..b6d4d67 100644 --- a/tmp_home_final.html +++ b/tmp_home_final.html @@ -1,192 +1,1614 @@ - -
- -
Kevin McKeand
- -
- + + + +
+ +
+
- + +
+
+ +
+

+ Kevin McKeand Coaching
+ Enabling Others To Achieve Their Potential +

+
+

Coaching for C-Level Executives who want to breakthrough and achieve the impossible in their business, navigating their organizations with clarity, reduced complexity and with more purpose.

+ + Schedule an assessment +
+ +
+
+
+
+ +
+ +
+ +
+
+ + + +
+
+
+

Executive and Life Coaching to Achieve Your Potential

+

Purpose: enable others to achieve their potential

+

Coaching for C-Level Executives who want to breakthrough and achieve the impossible in their business, navigating their organizations with clarity, reduced complexity and with more purpose.

+ +
+
+
+ Executive coaching infographic +
+
+
+
+ + + + + +
+
+ +
+

Specialty

+
    +
  • + +
    +

    VC & PE Partnership

    +

    I coach portfolio founders and CEOs to drive exponential valuation growth by transforming “impossible” ambitions into measurable professional outcomes.

    +
    +
  • +
  • + +
    +

    Leadership Alignment

    +

    Following CEO transformation, I align senior leadership teams to ensure the entire organization moves with singular, high-velocity purpose toward a transformed future.

    +
    +
  • +
+
+ +
+

Credentials

+
    +
  • + +
    +

    Certified

    +

    ICF PCC Certified Executive and Life Coach

    +
    +
  • +
  • + +
    +

    Trained

    +

    Trained in Adaptive Leadership Styles and Personal and Professional Transformations

    +
    +
  • +
+
+ Confidential + Insightful + Practical +
+
+ +
+
+ + + + + + + +
+
+
+

How We Work
Together

+ +
+
+

01

+
+

Clarity & Context

+

Identify the real challenge beneath the symptom, and name the narrative shaping your decisions.

+
+
+
+

02

+
+

Adaptive Experiments

+

Design small experiments to expand capability, build confidence, and improve leadership presence.

+
+
+
+

03

+
+

Integration & Accountability

+

Apply new behaviors in your real-world environment and reflect on the results.

+
+
+
+ + + Schedule an assessment + + +
+ +
+ Collaborative team working around a wooden table with laptops +
+
+
+ + + + + + + +
+
+

What They’re Saying

+ +
+
+

“Clear, grounding, and strategic. I left each session with a concrete action and a deeper sense of purpose.”

+
+ Client profile photo +
+

Client Name

+

CEO and B2B SaaS Founder

+
+
+
+ +
+

“Helped me reframe my leadership narrative and show up with more authority.”

+
+ Client profile photo +
+

Client Name

+

Founder and CEO

+
+
+
+
+
+
+ + + + + + + + +
+
+
+

Sample Outcomes Clients Seek

+

Coaching is a partnership designed for growth — outcomes depend on commitment and context.

+ + +
+ +
+
+ +

Executive Reinvention, driven by ontological changes

+
+ +
+ +

Working with a team of people to achieve what is considered impossible today

+
+ +
+ +

Identify your winning strategy and what’s holding you back from leading a team to achieve the impossible

+
+
+
+
+ + + + + + + + + +
+
+
+

Pricing

+

Let me know if you’re interested in longer term engagements or group coaching.

+
+ +
+
+

Initial Assessment

+
+ Free +
+

30 minutes

+ Book Now +
+ +
+ Most Popular +

Coaching

+
+ $500 + / hour +
+

Minimum of 1 hour

+ Book Now +
+ +
+

Coaching Package

+
+ $1,600 + / month +
+

Includes 4 hours of coaching

+ Book Now +
+
+
+
+ + + + + + + + +
+
+
+

Ready to explore coaching?

+

Start with a 30-minute fit call to assess alignment, goals, and the best coaching path

+ +
+ + +
+
+ +
- - -
-

Ready to explore coaching?

- - -

Start with a 30‑minute fit call to assess alignment, goals, and the best coaching path.

- - -
- -
-
- + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tmp_home_fixed.html b/tmp_home_fixed.html new file mode 100644 index 0000000..0216def --- /dev/null +++ b/tmp_home_fixed.html @@ -0,0 +1,1602 @@ + + + +
+ + + +
+ +
+ +
+
+ +
+

+ Kevin McKeand Coaching
+ Enabling Others To Achieve Their Potential +

+
+

Coaching for C-Level Executives who want to breakthrough and achieve the impossible in their business, navigating their organizations with clarity, reduced complexity and with more purpose.

+ + Schedule an assessment +
+ +
+
+
+
+ +
+ +
+ +
+
+ + + +
+
+
+

Executive and Life Coaching to Achieve Your Potential

+

Purpose: enable others to achieve their potential

+

Coaching for C-Level Executives who want to breakthrough and achieve the impossible in their business, navigating their organizations with clarity, reduced complexity and with more purpose.

+ +
+
+
+ Executive coaching infographic +
+
+
+
+ + + + + +
+
+ +
+

Specialty

+
    +
  • + +
    +

    VC & PE Partnership

    +

    I coach portfolio founders and CEOs to drive exponential valuation growth by transforming “impossible” ambitions into measurable professional outcomes.

    +
    +
  • +
  • + +
    +

    Leadership Alignment

    +

    Following CEO transformation, I align senior leadership teams to ensure the entire organization moves with singular, high-velocity purpose toward a transformed future.

    +
    +
  • +
+
+ +
+

Credentials

+
    +
  • + +
    +

    Certified

    +

    ICF PCC Certified Executive and Life Coach

    +
    +
  • +
  • + +
    +

    Trained

    +

    Trained in Adaptive Leadership Styles and Personal and Professional Transformations

    +
    +
  • +
+
+ Confidential + Insightful + Practical +
+
+ +
+
+ + + + + + + +
+
+
+

How We Work
Together

+ +
+
+

01

+
+

Clarity & Context

+

Identify the real challenge beneath the symptom, and name the narrative shaping your decisions.

+
+
+
+

02

+
+

Adaptive Experiments

+

Design small experiments to expand capability, build confidence, and improve leadership presence.

+
+
+
+

03

+
+

Integration & Accountability

+

Apply new behaviors in your real-world environment and reflect on the results.

+
+
+
+ + + Schedule an assessment + + +
+ +
+ Collaborative team working around a wooden table with laptops +
+
+
+ + + + + + + +
+
+

What They’re Saying

+ +
+
+

“Clear, grounding, and strategic. I left each session with a concrete action and a deeper sense of purpose.”

+
+ Client profile photo +
+

Client Name

+

CEO and B2B SaaS Founder

+
+
+
+ +
+

“Helped me reframe my leadership narrative and show up with more authority.”

+
+ Client profile photo +
+

Client Name

+

Founder and CEO

+
+
+
+
+
+
+ + + + + + + + +
+
+
+

Sample Outcomes Clients Seek

+

Coaching is a partnership designed for growth — outcomes depend on commitment and context.

+ + +
+ +
+
+ +

Executive Reinvention, driven by ontological changes

+
+ +
+ +

Working with a team of people to achieve what is considered impossible today

+
+ +
+ +

Identify your winning strategy and what’s holding you back from leading a team to achieve the impossible

+
+
+
+
+ + + + + + + + + +
+
+
+

Pricing

+

Let me know if you’re interested in longer term engagements or group coaching.

+
+ +
+
+

Initial Assessment

+
+ Free +
+

30 minutes

+ Book Now +
+ +
+ Most Popular +

Coaching

+
+ $500 + / hour +
+

Minimum of 1 hour

+ Book Now +
+ +
+

Coaching Package

+
+ $1,600 + / month +
+

Includes 4 hours of coaching

+ Book Now +
+
+
+
+ + + + + + + + +
+
+
+

Ready to explore coaching?

+

Start with a 30-minute fit call to assess alignment, goals, and the best coaching path

+ +
+ + +
+
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tmp_home_fixed2.html b/tmp_home_fixed2.html new file mode 100644 index 0000000..aa77283 --- /dev/null +++ b/tmp_home_fixed2.html @@ -0,0 +1,1602 @@ + + + +
+ + + +
+ +
+ +
+
+ +
+

+ Kevin McKeand Coaching
+ Enabling Others To Achieve Their Potential +

+
+

Coaching for C-Level Executives who want to breakthrough and achieve the impossible in their business, navigating their organizations with clarity, reduced complexity and with more purpose.

+ + Schedule an assessment +
+ +
+
+
+
+ +
+ +
+ +
+
+ + + +
+
+
+

Executive and Life Coaching to Achieve Your Potential

+

Purpose: enable others to achieve their potential

+

Coaching for C-Level Executives who want to breakthrough and achieve the impossible in their business, navigating their organizations with clarity, reduced complexity and with more purpose.

+ +
+
+
+ Executive coaching infographic +
+
+
+
+ + + + + +
+
+ +
+

Specialty

+
    +
  • + +
    +

    VC & PE Partnership

    +

    I coach portfolio founders and CEOs to drive exponential valuation growth by transforming “impossible” ambitions into measurable professional outcomes.

    +
    +
  • +
  • + +
    +

    Leadership Alignment

    +

    Following CEO transformation, I align senior leadership teams to ensure the entire organization moves with singular, high-velocity purpose toward a transformed future.

    +
    +
  • +
+
+ +
+

Credentials

+
    +
  • + +
    +

    Certified

    +

    ICF PCC Certified Executive and Life Coach

    +
    +
  • +
  • + +
    +

    Trained

    +

    Trained in Adaptive Leadership Styles and Personal and Professional Transformations

    +
    +
  • +
+
+ Confidential + Insightful + Practical +
+
+ +
+
+ + + + + + + +
+
+
+

How We Work
Together

+ +
+
+

01

+
+

Clarity & Context

+

Identify the real challenge beneath the symptom, and name the narrative shaping your decisions.

+
+
+
+

02

+
+

Adaptive Experiments

+

Design small experiments to expand capability, build confidence, and improve leadership presence.

+
+
+
+

03

+
+

Integration & Accountability

+

Apply new behaviors in your real-world environment and reflect on the results.

+
+
+
+ + + Schedule an assessment + + +
+ +
+ Collaborative team working around a wooden table with laptops +
+
+
+ + + + + + + +
+
+

What They’re Saying

+ +
+
+

“Clear, grounding, and strategic. I left each session with a concrete action and a deeper sense of purpose.”

+
+ Client profile photo +
+

Client Name

+

CEO and B2B SaaS Founder

+
+
+
+ +
+

“Helped me reframe my leadership narrative and show up with more authority.”

+
+ Client profile photo +
+

Client Name

+

Founder and CEO

+
+
+
+
+
+
+ + + + + + + + +
+
+
+

Sample Outcomes Clients Seek

+

Coaching is a partnership designed for growth — outcomes depend on commitment and context.

+ + +
+ +
+
+ +

Executive Reinvention, driven by ontological changes

+
+ +
+ +

Working with a team of people to achieve what is considered impossible today

+
+ +
+ +

Identify your winning strategy and what’s holding you back from leading a team to achieve the impossible

+
+
+
+
+ + + + + + + + + +
+
+
+

Pricing

+

Let me know if you’re interested in longer term engagements or group coaching.

+
+ +
+
+

Initial Assessment

+
+ Free +
+

30 minutes

+ Book Now +
+ +
+ Most Popular +

Coaching

+
+ $500 + / hour +
+

Minimum of 1 hour

+ Book Now +
+ +
+

Coaching Package

+
+ $1,600 + / month +
+

Includes 4 hours of coaching

+ Book Now +
+
+
+
+ + + + + + + + +
+
+
+

Ready to explore coaching?

+

Start with a 30-minute fit call to assess alignment, goals, and the best coaching path

+ +
+ + +
+
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tmp_home_updated_block1.html b/tmp_home_updated_block1.html new file mode 100644 index 0000000..023fd9a --- /dev/null +++ b/tmp_home_updated_block1.html @@ -0,0 +1,1599 @@ + + + +
+ + + +
+ +
+ +
+
+ +
+

+ Kevin McKeand CoachingKevin McKeand Coaching
+ Enabling Others To Achieve Their Potential +

+
+

Coaching for C-Level Executives who want to breakthrough and achieve the impossible in their business, navigating their organizations with clarity, reduced complexity and with more purpose.

+ + Schedule an assessment +
+ +
+
+
+
+ +
+ +
+ +
+
+ + + +
+
+
+

Executive and Life Coaching to Achieve Your Potential

+

Purpose: enable others to achieve their potential

+

Coaching for C-Level Executives who want to breakthrough and achieve the impossible in their business, navigating their organizations with clarity, reduced complexity and with more purpose.

+ +
+
+
+ Executive coaching infographic +
+
+
+
+ + + + + +
+
+ +
+

Specialty

+
    +
  • + +
    +

    VC & PE Partnership

    +

    I coach portfolio founders and CEOs to drive exponential valuation growth by transforming “impossible” ambitions into measurable professional outcomes.

    +
    +
  • +
  • + +
    +

    Leadership Alignment

    +

    Following CEO transformation, I align senior leadership teams to ensure the entire organization moves with singular, high-velocity purpose toward a transformed future.

    +
    +
  • +
+
+ +
+

Credentials

+
    +
  • + +
    +

    Certified

    +

    ICF PCC Certified Executive and Life Coach

    +
    +
  • +
  • + +
    +

    Trained

    +

    Trained in Adaptive Leadership Styles and Personal and Professional Transformations

    +
    +
  • +
+
+ Confidential + Insightful + Practical +
+
+ +
+
+ + + + + + + +
+
+
+

How We Work
Together

+ +
+
+

01

+
+

Clarity & Context

+

Identify the real challenge beneath the symptom, and name the narrative shaping your decisions.

+
+
+
+

02

+
+

Adaptive Experiments

+

Design small experiments to expand capability, build confidence, and improve leadership presence.

+
+
+
+

03

+
+

Integration & Accountability

+

Apply new behaviors in your real-world environment and reflect on the results.

+
+
+
+ + + Schedule an assessment + + +
+ +
+ Collaborative team working around a wooden table with laptops +
+
+
+ + + + + + + +
+
+

What They’re Saying

+ +
+
+

“Clear, grounding, and strategic. I left each session with a concrete action and a deeper sense of purpose.”

+
+ Client profile photo +
+

Client Name

+

CEO and B2B SaaS Founder

+
+
+
+ +
+

“Helped me reframe my leadership narrative and show up with more authority.”

+
+ Client profile photo +
+

Client Name

+

Founder and CEO

+
+
+
+
+
+
+ + + + + + + + +
+
+
+

Sample Outcomes Clients Seek

+

Coaching is a partnership designed for growth — outcomes depend on commitment and context.

+ + +
+ +
+
+ +

Executive Reinvention, driven by ontological changes

+
+ +
+ +

Working with a team of people to achieve what is considered impossible today

+
+ +
+ +

Identify your winning strategy and what’s holding you back from leading a team to achieve the impossible

+
+
+
+
+ + + + + + + + + +
+
+
+

Pricing

+

Let me know if you’re interested in longer term engagements or group coaching.

+
+ +
+
+

Initial Assessment

+
+ Free +
+

30 minutes

+ Book Now +
+ +
+ Most Popular +

Coaching

+
+ $500 + / hour +
+

Minimum of 1 hour

+ Book Now +
+ +
+

Coaching Package

+
+ $1,600 + / month +
+

Includes 4 hours of coaching

+ Book Now +
+
+
+
+ + + + + + + + +
+
+
+

Ready to explore coaching?

+

Start with a 30-minute fit call to assess alignment, goals, and the best coaching path

+ +
+ + +
+
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/update_block1.py b/update_block1.py new file mode 100644 index 0000000..f2c7583 --- /dev/null +++ b/update_block1.py @@ -0,0 +1,20 @@ +import re + +with open('fix_home_block1.html', 'r', encoding='utf-8') as f: + content = f.read() + +with open('block1_html.html', 'r', encoding='utf-8') as f: + new_html = f.read() + +pattern_hero = re.compile(r'
+ *
.*?
', re.DOTALL) + +if pattern_hero.search(content): + content = pattern_hero.sub('
+' + new_html + '\n', content, count=1) + + with open('tmp_home_updated_block1.html', 'w', encoding='utf-8') as f: + f.write(content) + print("Replaced successfully!") +else: + print("Could not find kmc-hero section") \ No newline at end of file