Autosave: 20260312-203833
This commit is contained in:
parent
266277a2de
commit
d16f4d94f5
93
fix_home.py
Normal file
93
fix_home.py
Normal file
@ -0,0 +1,93 @@
|
||||
import re
|
||||
import sys
|
||||
|
||||
with open('tmp_home_current.html', 'r', encoding='utf-8') as f:
|
||||
html = f.read()
|
||||
|
||||
# 1. Update Image
|
||||
old_img = """<!-- wp:image {"align":"center","width":"275px","className":"is-resized"} -->
|
||||
<figure class="wp-block-image aligncenter is-resized"><img src="/wp-content/uploads/2026/03/pasted-20260312-192203-5bf6a392.png" alt="Kevin McKeand" style="border-radius:16px;width:275px;max-width:100%;height:auto;"/></figure>
|
||||
<!-- /wp:image -->"""
|
||||
|
||||
new_img = """<!-- wp:image {"align":"center","className":"is-resized"} -->
|
||||
<figure class="wp-block-image aligncenter is-resized"><img src="/wp-content/uploads/2026/03/pasted-20260312-192203-5bf6a392.png" alt="Kevin McKeand" style="border-radius:16px;width:100%;max-width:1100px;height:350px;object-fit:cover;object-position:center 20%;"/></figure>
|
||||
<!-- /wp:image -->"""
|
||||
|
||||
if old_img in html:
|
||||
html = html.replace(old_img, new_img)
|
||||
else:
|
||||
print("Warning: could not find old_img")
|
||||
|
||||
# 2. Update Credentials
|
||||
old_cred = """<!-- wp:paragraph {"style":{"typography":{"fontSize":"16px"},"color":{"text":"#ffffff"}},"textColor":"white"} -->
|
||||
<p class="has-white-color has-text-color" style="font-size:16px;color:#ffffff"><strong>Credentials</strong></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:list -->
|
||||
<ul><li>ICF PCC Certified Executive and Life Coach</li><li>Trained in Adaptive Leadership Styles and Personal and Professional Transformations</li></ul>
|
||||
<!-- /wp:list -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"},"color":{"text":"#94a3b8"}}} -->
|
||||
<p style="color:#94a3b8;font-size:14px">Confidential. Insightful. Practical.</p>
|
||||
<!-- /wp:paragraph -->"""
|
||||
|
||||
new_cred = """<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px"},"color":{"text":"#ffffff"}},"textColor":"white"} -->
|
||||
<p class="has-white-color has-text-color" style="font-size:18px;color:#ffffff"><strong>Credentials</strong></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:list {"style":{"typography":{"fontSize":"18px"}}} -->
|
||||
<ul style="font-size:18px"><li>ICF PCC Certified Executive and Life Coach</li><li>Trained in Adaptive Leadership Styles and Personal and Professional Transformations</li></ul>
|
||||
<!-- /wp:list -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px"},"color":{"text":"#94a3b8"}}} -->
|
||||
<p style="color:#94a3b8;font-size:18px">Confidential. Insightful. Practical.</p>
|
||||
<!-- /wp:paragraph -->"""
|
||||
|
||||
if old_cred in html:
|
||||
html = html.replace(old_cred, new_cred)
|
||||
else:
|
||||
print("Warning: could not find old_cred")
|
||||
|
||||
# 3. Align Pricing and change 550 to 500
|
||||
|
||||
old_p1 = """<!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px">Initial Assessment</h3>"""
|
||||
new_p1 = """<!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px;min-height:60px">Initial Assessment</h3>"""
|
||||
|
||||
old_p2 = """<!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px">Coaching</h3>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"24px","fontWeight":"700"}}} -->
|
||||
<p style="font-size:24px;font-weight:700">$550 <span style="font-size:16px;font-weight:400">/ hour</span></p>"""
|
||||
new_p2 = """<!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px;min-height:60px">Coaching</h3>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"24px","fontWeight":"700"}}} -->
|
||||
<p style="font-size:24px;font-weight:700">$500 <span style="font-size:16px;font-weight:400">/ hour</span></p>"""
|
||||
|
||||
old_p3 = """<!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px">Coaching Package</h3>"""
|
||||
new_p3 = """<!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px;min-height:60px">Coaching Package</h3>"""
|
||||
|
||||
if old_p1 in html:
|
||||
html = html.replace(old_p1, new_p1)
|
||||
else:
|
||||
print("Warning: could not find old_p1")
|
||||
|
||||
if old_p2 in html:
|
||||
html = html.replace(old_p2, new_p2)
|
||||
else:
|
||||
print("Warning: could not find old_p2")
|
||||
|
||||
if old_p3 in html:
|
||||
html = html.replace(old_p3, new_p3)
|
||||
else:
|
||||
print("Warning: could not find old_p3")
|
||||
|
||||
with open('tmp_home_current2.html', 'w', encoding='utf-8') as f:
|
||||
f.write(html)
|
||||
print("Done writing tmp_home_current2.html")
|
||||
49
fix_home_2.py
Normal file
49
fix_home_2.py
Normal file
@ -0,0 +1,49 @@
|
||||
import re
|
||||
|
||||
with open('tmp_home_current2.html', 'r', encoding='utf-8') as f:
|
||||
html = f.read()
|
||||
|
||||
old_cred = """<!-- wp:paragraph {"style":{"typography":{"fontSize":"16px"},"color":{"text":"#ffffff"}},"textColor":"white"} -->
|
||||
<p class="has-white-color has-text-color" style="font-size:16px;color:#ffffff"><strong>Credentials</strong></p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:list -->
|
||||
<ul><li>ICF PCC Certified Executive and Life Coach</li><li>Trained in Adaptive Leadership Styles and Personal and Professional Transformations</li></ul>
|
||||
<!-- /wp:list -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"},"color":{"text":"#94a3b8"}}} -->
|
||||
<p style="color:#94a3b8;font-size:14px">Confidential. Insightful. Practical.</p>
|
||||
<!-- /wp:paragraph -->"""
|
||||
|
||||
new_cred = """<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px"},"color":{"text":"#ffffff"}},"textColor":"white"} -->
|
||||
<p class="has-white-color has-text-color" style="font-size:18px;color:#ffffff"><strong>Credentials</strong></p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:list {"style":{"typography":{"fontSize":"18px"}}} -->
|
||||
<ul style="font-size:18px"><li>ICF PCC Certified Executive and Life Coach</li><li>Trained in Adaptive Leadership Styles and Personal and Professional Transformations</li></ul>
|
||||
<!-- /wp:list -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px"},"color":{"text":"#94a3b8"}}} -->
|
||||
<p style="color:#94a3b8;font-size:18px">Confidential. Insightful. Practical.</p>
|
||||
<!-- /wp:paragraph -->"""
|
||||
|
||||
if old_cred in html:
|
||||
html = html.replace(old_cred, new_cred)
|
||||
else:
|
||||
print("Warning: could not find old_cred without newlines")
|
||||
|
||||
old_p2 = """<!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px">Coaching</h3>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"24px","fontWeight":"700"}}} -->
|
||||
<p style="font-size:24px;font-weight:700">$550 <span style="font-size:16px;font-weight:400">/ hour</span></p>"""
|
||||
|
||||
new_p2 = """<!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px;min-height:60px">Coaching</h3>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"24px","fontWeight":"700"}}} -->
|
||||
<p style="font-size:24px;font-weight:700">$500 <span style="font-size:16px;font-weight:400">/ hour</span></p>"""
|
||||
|
||||
if old_p2 in html:
|
||||
html = html.replace(old_p2, new_p2)
|
||||
else:
|
||||
print("Warning: could not find old_p2 without newlines")
|
||||
|
||||
with open('tmp_home_current3.html', 'w', encoding='utf-8') as f:
|
||||
f.write(html)
|
||||
24
test_match.py
Normal file
24
test_match.py
Normal file
@ -0,0 +1,24 @@
|
||||
import sys
|
||||
import re
|
||||
|
||||
with open('tmp_home_current.html', 'r', encoding='utf-8') as f:
|
||||
html = f.read()
|
||||
|
||||
img_block_str = """<!-- wp:group {"layout":{"type":"constrained","contentSize":"1100px"},"style":{"spacing":{"padding":{"top":"40px","bottom":"20px","left":"24px","right":"24px"}}}} -->
|
||||
<div class="wp-block-group" style="padding-top:40px;padding-right:24px;padding-bottom:20px;padding-left:24px">
|
||||
<!-- wp:image {"align":"center"} -->
|
||||
<figure class="wp-block-image aligncenter"><img src="/wp-content/uploads/2026/03/pasted-20260312-192203-5bf6a392.png" alt="Kevin McKeand" style="border-radius:16px;max-width:100%;height:auto;"/></figure>
|
||||
<!-- /wp:image -->
|
||||
</div>
|
||||
<!-- /wp:group -->"""
|
||||
|
||||
if img_block_str in html:
|
||||
print("Found")
|
||||
else:
|
||||
print("Not Found")
|
||||
m = re.search(r'<!-- wp:group \{"layout":\{"type":"constrained","contentSize":"1100px"\}\,"style":\{"spacing":\{"padding":\{"top":"40px".*?<!-- /wp:group -->', html, re.DOTALL)
|
||||
if m:
|
||||
print("Regex found:")
|
||||
print(repr(m.group(0)))
|
||||
print("Expected:")
|
||||
print(repr(img_block_str))
|
||||
68
tmp_footer.html
Normal file
68
tmp_footer.html
Normal file
@ -0,0 +1,68 @@
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
|
||||
<!-- wp:columns {"align":"wide"} -->
|
||||
<div class="wp-block-columns alignwide">
|
||||
<!-- wp:column {"width":"30%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:30%">
|
||||
<!-- wp:group {"style":{"dimensions":{"minHeight":""},"layout":{"selfStretch":"fit","flexSize":null}},"layout":{"type":"flex","orientation":"vertical"}} -->
|
||||
<div class="wp-block-group">
|
||||
<!-- wp:site-logo {"width":20,"shouldSyncIcon":true,"style":{"layout":{"selfStretch":"fit","flexSize":null}}} /-->
|
||||
|
||||
<!-- wp:site-title {"level":0,"fontSize":"medium"} /-->
|
||||
|
||||
<!-- wp:site-tagline {"fontSize":"small"} /-->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
</div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"20%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:20%">
|
||||
</div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"50%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:50%">
|
||||
<!-- wp:group {"layout":{"type":"flex","flexWrap":"wrap","justifyContent":"space-between","verticalAlignment":"top"}} -->
|
||||
<div class="wp-block-group">
|
||||
<!-- wp:group {"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group">
|
||||
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|10"}},"layout":{"type":"flex","orientation":"vertical"}} -->
|
||||
<div class="wp-block-group">
|
||||
|
||||
<!-- wp:navigation {"overlayMenu":"never","layout":{"type":"flex","orientation":"vertical"},"style":{"typography":{"fontStyle":"normal","fontWeight":"400"},"spacing":{"blockGap":"var:preset|spacing|10"}},"fontSize":"small","ariaLabel":"Footer Menu"} -->
|
||||
|
||||
<!-- wp:navigation-link {"label":"About","type":"page","id":48,"url":"/about/","kind":"post-type"} /-->
|
||||
<!-- wp:navigation-link {"label":"Interview Series","url":"https://www.youtube.com/@unreasonable_founders"} /-->
|
||||
<!-- wp:navigation-link {"label":"Terms and Conditions","url":"#"} /-->
|
||||
|
||||
<!-- /wp:navigation -->
|
||||
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
</div>
|
||||
<!-- /wp:column -->
|
||||
</div>
|
||||
<!-- /wp:columns -->
|
||||
|
||||
<!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"0"}}}} -->
|
||||
<div class="wp-block-group alignwide" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:0">
|
||||
<!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|contrast"}}}},"textColor":"contrast-2","fontSize":"small"} -->
|
||||
<p class="has-contrast-2-color has-text-color has-link-color has-small-font-size">
|
||||
Designed with <a href="https://wordpress.org" rel="nofollow">WordPress</a><br>
|
||||
Using Appwizzy
|
||||
</p>
|
||||
<!-- /wp:paragraph --> </div>
|
||||
<!-- /wp:group -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
|
||||
|
||||
|
||||
@ -1,91 +1,77 @@
|
||||
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"40px","bottom":"20px","left":"24px","right":"24px"}}}} -->
|
||||
<div class="wp-block-group alignfull" style="padding-top:40px;padding-right:24px;padding-bottom:20px;padding-left:24px">
|
||||
<!-- wp:image {"align":"full","className":"is-resized"} -->
|
||||
<figure class="wp-block-image alignfull is-resized"><img src="/wp-content/uploads/2026/03/pasted-20260312-192203-5bf6a392.png" alt="Kevin McKeand" style="border-radius:16px;width:100%;height:350px;object-fit:cover;object-position:center 20%;"/></figure>
|
||||
<!-- /wp:image -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"80px","bottom":"80px","left":"24px","right":"24px"}},"color":{"background":"#316263"}},"textColor":"white","layout":{"type":"constrained","contentSize":"1100px"}} -->
|
||||
<div class="wp-block-group has-white-color has-text-color has-background" style="background-color:#316263;padding-top:80px;padding-right:24px;padding-bottom:80px;padding-left:24px"><!-- wp:columns {"verticalAlignment":"center","style":{"spacing":{"blockGap":"40px"}}} -->
|
||||
<div class="wp-block-columns are-vertically-aligned-center"><!-- wp:column {"verticalAlignment":"center"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center"><!-- wp:heading {"level":1,"style":{"typography":{"fontSize":"54px","lineHeight":"1.05"},"color":{"text":"#ffffff"}},"textColor":"white"} -->
|
||||
<h1 class="has-white-color has-text-color" style="font-size:54px;line-height:1.05;color:#ffffff">Executive and Life Coaching to Achieve your Potential</h1>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px","lineHeight":"1.7"}}} -->
|
||||
<p style="font-size:18px;line-height:1.7">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.</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:buttons {"style":{"spacing":{"blockGap":"16px"}}} -->
|
||||
<div class="wp-block-buttons"><!-- wp:button {"backgroundColor":"white","textColor":"black","style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"12px","bottom":"12px","left":"22px","right":"22px"}}}} -->
|
||||
<div class="wp-block-button"><a class="wp-block-button__link has-black-color has-white-background-color has-text-color has-background" href="https://calendly.com/ktmckeand/60-minute-meeting" style="border-radius:999px;padding-top:12px;padding-right:22px;padding-bottom:12px;padding-left:22px">Schedule an initial assessment</a></div>
|
||||
<!-- /wp:button -->
|
||||
|
||||
<!-- wp:button {"style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"12px","bottom":"12px","left":"22px","right":"22px"}},"color":{"text":"#ffffff","background":"#334155"}}} -->
|
||||
<div class="wp-block-button"><a class="wp-block-button__link has-text-color has-background" href="#pricing" style="border-radius:999px;background-color:#334155;color:#ffffff;padding-top:12px;padding-right:22px;padding-bottom:12px;padding-left:22px">View coaching options</a></div>
|
||||
<!-- /wp:button --></div>
|
||||
<!-- /wp:buttons -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"},"color":{"text":"#cbd5e1"}}} -->
|
||||
<p style="color:#cbd5e1;font-size:14px">Purpose: enable others to achieve their potential.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"center"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center"><!-- wp:group {"style":{"spacing":{"padding":{"top":"24px","bottom":"24px","left":"24px","right":"24px"},"blockGap":"16px"},"border":{"radius":"16px"},"color":{"background":"#316263"}},"textColor":"white"} -->
|
||||
<div class="wp-block-group has-white-color has-text-color has-background" style="border-radius:16px;background-color:#316263;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:paragraph {"style":{"typography":{"fontSize":"16px"},"color":{"text":"#ffffff"}},"textColor":"white"} -->
|
||||
<p class="has-white-color has-text-color" style="font-size:16px;color:#ffffff"><strong>Credentials</strong></p>
|
||||
<div class="wp-block-group has-white-color has-text-color has-background" style="border-radius:16px;background-color:#316263;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:paragraph {"style":{"typography":{"fontSize":"18px"},"color":{"text":"#ffffff"}},"textColor":"white"} -->
|
||||
<p class="has-white-color has-text-color" style="font-size:18px;color:#ffffff"><strong>Credentials</strong></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:list -->
|
||||
<ul><li>ICF PCC Certified Executive and Life Coach</li><li>Trained in Adaptive Leadership Styles and Personal and Professional Transformations</li></ul>
|
||||
<!-- wp:list {"style":{"typography":{"fontSize":"18px"}}} -->
|
||||
<ul style="font-size:18px"><li>ICF PCC Certified Executive and Life Coach</li><li>Trained in Adaptive Leadership Styles and Personal and Professional Transformations</li></ul>
|
||||
<!-- /wp:list -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"},"color":{"text":"#94a3b8"}}} -->
|
||||
<p style="color:#94a3b8;font-size:14px">Confidential. Insightful. Practical.</p>
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px"},"color":{"text":"#94a3b8"}}} -->
|
||||
<p style="color:#94a3b8;font-size:18px">Confidential. Insightful. Practical.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"constrained","contentSize":"1100px"},"style":{"spacing":{"padding":{"top":"40px","bottom":"20px","left":"24px","right":"24px"}}}} -->
|
||||
<div class="wp-block-group" style="padding-top:40px;padding-right:24px;padding-bottom:20px;padding-left:24px">
|
||||
<!-- wp:image {"align":"center"} -->
|
||||
<figure class="wp-block-image aligncenter"><img src="/wp-content/uploads/2026/03/pasted-20260312-192203-5bf6a392.png" alt="Kevin McKeand" style="border-radius:16px;max-width:100%;height:auto;"/></figure>
|
||||
<!-- /wp:image -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"60px","left":"24px","right":"24px"},"blockGap":"28px"}},"layout":{"type":"constrained","contentSize":"1100px"}} -->
|
||||
<div class="wp-block-group" style="padding-top:60px;padding-right:24px;padding-bottom:60px;padding-left:24px"><!-- wp:heading {"level":2} -->
|
||||
<h2>How we work together</h2>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:columns -->
|
||||
<div class="wp-block-columns"><!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"14px"},"spacing":{"padding":{"top":"20px","bottom":"20px","left":"20px","right":"20px"}},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:14px;background-color:#f8fafc;padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:20px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px">1. Clarity & context</h3>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p>Identify the real challenge beneath the symptom, and name the narrative shaping your decisions.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"14px"},"spacing":{"padding":{"top":"20px","bottom":"20px","left":"20px","right":"20px"}},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:14px;background-color:#f8fafc;padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:20px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px">2. Adaptive experiments</h3>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p>Design small experiments to expand capability, build confidence, and improve leadership presence.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"14px"},"spacing":{"padding":{"top":"20px","bottom":"20px","left":"20px","right":"20px"}},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:14px;background-color:#f8fafc;padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:20px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px">3. Integration & accountability</h3>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p>Apply new behaviors in your real-world environment and reflect on the results.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
@ -93,71 +79,57 @@
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"60px","left":"24px","right":"24px"},"blockGap":"24px"},"color":{"background":"#316263"}},"textColor":"white","layout":{"type":"constrained","contentSize":"1100px"}} -->
|
||||
<div class="wp-block-group has-white-color has-text-color has-background" style="background-color:#316263;padding-top:60px;padding-right:24px;padding-bottom:60px;padding-left:24px"><!-- wp:heading {"level":2,"style":{"color":{"text":"#ffffff"}},"textColor":"white"} -->
|
||||
<h2 class="has-white-color has-text-color" style="color:#ffffff">Sample outcomes clients seek</h2>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:list -->
|
||||
<ul><li>Executive Reinvention, driven by ontological changes</li><li>Working with a team of people to achieve what is considered impossible today</li><li>Identify your winning strategy and what's holding you back from leading a team to achieve the impossible</li></ul>
|
||||
<!-- /wp:list -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"},"color":{"text":"#cbd5e1"}}} -->
|
||||
<p style="color:#cbd5e1;font-size:14px">Coaching is a partnership designed for growth — outcomes depend on commitment and context.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"60px","left":"24px","right":"24px"},"blockGap":"24px"}},"layout":{"type":"constrained","contentSize":"1400px"}} -->
|
||||
<div class="wp-block-group" style="padding-top:60px;padding-right:24px;padding-bottom:60px;padding-left:24px"><!-- wp:heading {"level":2} -->
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"0px","left":"24px","right":"24px"},"blockGap":"24px"}},"layout":{"type":"constrained","contentSize":"1400px"}} -->
|
||||
<div class="wp-block-group" style="padding-top:60px;padding-right:24px;padding-bottom:0px;padding-left:24px"><!-- wp:heading {"level":2} -->
|
||||
<h2>What they're Saying</h2>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:columns -->
|
||||
<div class="wp-block-columns"><!-- wp:column {"style":{"spacing":{"padding":{"top":"24px","right":"24px","bottom":"24px","left":"24px"}},"border":{"radius":"8px"},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-column has-background" style="border-radius:8px;background-color:#f8fafc;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:paragraph {"style":{"typography":{"fontSize":"16px"}}} -->
|
||||
<p style="font-size:16px">“Clear, grounding, and strategic. I left each session with a concrete action and a deeper sense of purpose.”</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"},"color":{"text":"#475569"}}} -->
|
||||
<p style="color:#475569;font-size:14px"><em>— CEO and B2B SaaS Founder</em></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"style":{"spacing":{"padding":{"top":"24px","right":"24px","bottom":"24px","left":"24px"}},"border":{"radius":"8px"},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-column has-background" style="border-radius:8px;background-color:#f8fafc;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:paragraph {"style":{"typography":{"fontSize":"16px"}}} -->
|
||||
<p style="font-size:16px">“Helped me reframe my leadership narrative and show up with more authority.”</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"},"color":{"text":"#475569"}}} -->
|
||||
<p style="color:#475569;font-size:14px"><em>— Founder and CEO</em></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"60px","left":"24px","right":"24px"},"blockGap":"24px"}},"layout":{"type":"constrained","contentSize":"1100px"}} -->
|
||||
<div class="wp-block-group" style="padding-top:60px;padding-right:24px;padding-bottom:60px;padding-left:24px"><!-- wp:heading {"level":2,"anchor":"pricing"} -->
|
||||
<h2 id="pricing">Pricing</h2>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:columns -->
|
||||
<div class="wp-block-columns">
|
||||
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"16px"},"spacing":{"padding":{"top":"24px","bottom":"24px","left":"24px","right":"24px"}},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:16px;background-color:#f8fafc;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px">Initial Assessment</h3>
|
||||
<h3 style="font-size:20px;min-height:60px">Initial Assessment</h3>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"24px","fontWeight":"700"}}} -->
|
||||
<p style="font-size:24px;font-weight:700">Free</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p>30 minutes</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:buttons -->
|
||||
<div class="wp-block-buttons"><!-- wp:button {"style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"10px","bottom":"10px","left":"18px","right":"18px"}},"color":{"background":"#0f172a","text":"#ffffff"}},"width":100} -->
|
||||
<div class="wp-block-button has-custom-width wp-block-button__width-100"><a class="wp-block-button__link has-text-color has-background" href="https://calendly.com/ktmckeand/60-minute-meeting" style="border-radius:999px;background-color:#0f172a;color:#ffffff;padding-top:10px;padding-right:18px;padding-bottom:10px;padding-left:18px;text-align:center">Book Now</a></div>
|
||||
@ -165,21 +137,17 @@
|
||||
<!-- /wp:buttons --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"16px"},"spacing":{"padding":{"top":"24px","bottom":"24px","left":"24px","right":"24px"}},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:16px;background-color:#f8fafc;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px">Coaching</h3>
|
||||
<h3 style="font-size:20px;min-height:60px">Coaching</h3>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"24px","fontWeight":"700"}}} -->
|
||||
<p style="font-size:24px;font-weight:700">$550 <span style="font-size:16px;font-weight:400">/ hour</span></p>
|
||||
<p style="font-size:24px;font-weight:700">$500 <span style="font-size:16px;font-weight:400">/ hour</span></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p>Minimum of one hour</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:buttons -->
|
||||
<div class="wp-block-buttons"><!-- wp:button {"style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"10px","bottom":"10px","left":"18px","right":"18px"}},"color":{"background":"#0f172a","text":"#ffffff"}},"width":100} -->
|
||||
<div class="wp-block-button has-custom-width wp-block-button__width-100"><a class="wp-block-button__link has-text-color has-background" href="https://calendly.com/ktmckeand/60-minute-meeting" style="border-radius:999px;background-color:#0f172a;color:#ffffff;padding-top:10px;padding-right:18px;padding-bottom:10px;padding-left:18px;text-align:center">Book Now</a></div>
|
||||
@ -187,57 +155,38 @@
|
||||
<!-- /wp:buttons --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"16px"},"spacing":{"padding":{"top":"24px","bottom":"24px","left":"24px","right":"24px"}},"color":{"background":"#e2e8f0"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:16px;background-color:#e2e8f0;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px">Coaching Package</h3>
|
||||
<h3 style="font-size:20px;min-height:60px">Coaching Package</h3>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"24px","fontWeight":"700"}}} -->
|
||||
<p style="font-size:24px;font-weight:700">$1,500 <span style="font-size:16px;font-weight:400">/ month</span></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:buttons -->
|
||||
<div class="wp-block-buttons"><!-- wp:button {"style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"10px","bottom":"10px","left":"18px","right":"18px"}},"color":{"background":"#0f172a","text":"#ffffff"}},"width":100} -->
|
||||
<div class="wp-block-button has-custom-width wp-block-button__width-100"><a class="wp-block-button__link has-text-color has-background" href="https://calendly.com/ktmckeand/60-minute-meeting" style="border-radius:999px;background-color:#0f172a;color:#ffffff;padding-top:10px;padding-right:18px;padding-bottom:10px;padding-left:18px;text-align:center">Book Now</a></div>
|
||||
<!-- /wp:button --></div>
|
||||
<!-- /wp:buttons -->
|
||||
|
||||
<!-- wp:paragraph {"align":"center"} -->
|
||||
<p class="has-text-align-center">Includes 4 hours of coaching</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
</div>
|
||||
<!-- /wp:columns -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"80px","left":"24px","right":"24px"},"blockGap":"16px"},"color":{"background":"#f1f5f9"}},"layout":{"type":"constrained","contentSize":"1100px"}} -->
|
||||
<div class="wp-block-group has-background" style="background-color:#f1f5f9;padding-top:60px;padding-right:24px;padding-bottom:80px;padding-left:24px"><!-- wp:heading {"level":2} -->
|
||||
<h2>Ready to explore coaching?</h2>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p>Start with a 30‑minute fit call to assess alignment, goals, and the best coaching path.</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:buttons -->
|
||||
<div class="wp-block-buttons"><!-- wp:button {"style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"12px","bottom":"12px","left":"22px","right":"22px"}},"color":{"background":"#0f172a","text":"#ffffff"}}} -->
|
||||
<div class="wp-block-button"><a class="wp-block-button__link has-text-color has-background" href="https://calendly.com/ktmckeand/60-minute-meeting" style="border-radius:999px;background-color:#0f172a;color:#ffffff;padding-top:12px;padding-right:22px;padding-bottom:12px;padding-left:22px">Schedule an initial assessment</a></div>
|
||||
<!-- /wp:button --></div>
|
||||
<!-- /wp:buttons --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -1,39 +1,40 @@
|
||||
<!-- wp:group {"layout":{"type":"constrained","contentSize":"1100px"},"style":{"spacing":{"padding":{"top":"40px","bottom":"20px","left":"24px","right":"24px"}}}} -->
|
||||
<div class="wp-block-group" style="padding-top:40px;padding-right:24px;padding-bottom:20px;padding-left:24px">
|
||||
<!-- wp:image {"align":"center","width":"275px","className":"is-resized"} -->
|
||||
<figure class="wp-block-image aligncenter is-resized"><img src="/wp-content/uploads/2026/03/pasted-20260312-192203-5bf6a392.png" alt="Kevin McKeand" style="border-radius:16px;width:275px;max-width:100%;height:auto;"/></figure>
|
||||
<!-- /wp:image -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"80px","bottom":"80px","left":"24px","right":"24px"}},"color":{"background":"#316263"}},"textColor":"white","layout":{"type":"constrained","contentSize":"1100px"}} -->
|
||||
<div class="wp-block-group has-white-color has-text-color has-background" style="background-color:#316263;padding-top:80px;padding-right:24px;padding-bottom:80px;padding-left:24px"><!-- wp:columns {"verticalAlignment":"center","style":{"spacing":{"blockGap":"40px"}}} -->
|
||||
<div class="wp-block-columns are-vertically-aligned-center"><!-- wp:column {"verticalAlignment":"center"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center"><!-- wp:heading {"level":1,"style":{"typography":{"fontSize":"54px","lineHeight":"1.05"},"color":{"text":"#ffffff"}},"textColor":"white"} -->
|
||||
<h1 class="has-white-color has-text-color" style="font-size:54px;line-height:1.05;color:#ffffff">Executive and Life Coaching to Achieve your Potential</h1>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px","lineHeight":"1.7"}}} -->
|
||||
<p style="font-size:18px;line-height:1.7">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.</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:buttons {"style":{"spacing":{"blockGap":"16px"}}} -->
|
||||
<div class="wp-block-buttons"><!-- wp:button {"backgroundColor":"white","textColor":"black","style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"12px","bottom":"12px","left":"22px","right":"22px"}}}} -->
|
||||
<div class="wp-block-button"><a class="wp-block-button__link has-black-color has-white-background-color has-text-color has-background" href="/schedule/" style="border-radius:999px;padding-top:12px;padding-right:22px;padding-bottom:12px;padding-left:22px">Schedule an initial assessment</a></div>
|
||||
<div class="wp-block-button"><a class="wp-block-button__link has-black-color has-white-background-color has-text-color has-background" href="https://calendly.com/ktmckeand/60-minute-meeting" style="border-radius:999px;padding-top:12px;padding-right:22px;padding-bottom:12px;padding-left:22px">Schedule an initial assessment</a></div>
|
||||
<!-- /wp:button -->
|
||||
|
||||
<!-- wp:button {"style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"12px","bottom":"12px","left":"22px","right":"22px"}},"color":{"text":"#ffffff","background":"#334155"}}} -->
|
||||
<div class="wp-block-button"><a class="wp-block-button__link has-text-color has-background" href="/pricing/" style="border-radius:999px;background-color:#334155;color:#ffffff;padding-top:12px;padding-right:22px;padding-bottom:12px;padding-left:22px">View coaching options</a></div>
|
||||
<div class="wp-block-button"><a class="wp-block-button__link has-text-color has-background" href="#pricing" style="border-radius:999px;background-color:#334155;color:#ffffff;padding-top:12px;padding-right:22px;padding-bottom:12px;padding-left:22px">View coaching options</a></div>
|
||||
<!-- /wp:button --></div>
|
||||
<!-- /wp:buttons -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"},"color":{"text":"#cbd5e1"}}} -->
|
||||
<p style="color:#cbd5e1;font-size:14px">Purpose: enable others to achieve their potential.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"center"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center"><!-- wp:group {"style":{"spacing":{"padding":{"top":"24px","bottom":"24px","left":"24px","right":"24px"},"blockGap":"16px"},"border":{"radius":"16px"},"color":{"background":"#316263"}},"textColor":"white"} -->
|
||||
<div class="wp-block-group has-white-color has-text-color has-background" style="border-radius:16px;background-color:#316263;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:paragraph {"style":{"typography":{"fontSize":"16px"},"color":{"text":"#ffffff"}},"textColor":"white"} -->
|
||||
<p class="has-white-color has-text-color" style="font-size:16px;color:#ffffff"><strong>Credentials</strong></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:list -->
|
||||
<ul><li>ICF PCC Certified Executive and Life Coach</li><li>Trained in Adaptive Leadership Styles and Personal and Professional Transformations</li></ul>
|
||||
<!-- /wp:list -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"},"color":{"text":"#94a3b8"}}} -->
|
||||
<p style="color:#94a3b8;font-size:14px">Confidential. Insightful. Practical.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
@ -41,43 +42,36 @@
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"60px","left":"24px","right":"24px"},"blockGap":"28px"}},"layout":{"type":"constrained","contentSize":"1100px"}} -->
|
||||
<div class="wp-block-group" style="padding-top:60px;padding-right:24px;padding-bottom:60px;padding-left:24px"><!-- wp:heading {"level":2} -->
|
||||
<h2>How we work together</h2>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:columns -->
|
||||
<div class="wp-block-columns"><!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"14px"},"spacing":{"padding":{"top":"20px","bottom":"20px","left":"20px","right":"20px"}},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:14px;background-color:#f8fafc;padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:20px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px">1. Clarity & context</h3>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p>Identify the real challenge beneath the symptom, and name the narrative shaping your decisions.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"14px"},"spacing":{"padding":{"top":"20px","bottom":"20px","left":"20px","right":"20px"}},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:14px;background-color:#f8fafc;padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:20px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px">2. Adaptive experiments</h3>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p>Design small experiments to expand capability, build confidence, and improve leadership presence.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"14px"},"spacing":{"padding":{"top":"20px","bottom":"20px","left":"20px","right":"20px"}},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:14px;background-color:#f8fafc;padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:20px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px">3. Integration & accountability</h3>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p>Apply new behaviors in your real-world environment and reflect on the results.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
@ -85,148 +79,114 @@
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"60px","left":"24px","right":"24px"},"blockGap":"24px"},"color":{"background":"#316263"}},"textColor":"white","layout":{"type":"constrained","contentSize":"1100px"}} -->
|
||||
<div class="wp-block-group has-white-color has-text-color has-background" style="background-color:#316263;padding-top:60px;padding-right:24px;padding-bottom:60px;padding-left:24px"><!-- wp:heading {"level":2,"style":{"color":{"text":"#ffffff"}},"textColor":"white"} -->
|
||||
<h2 class="has-white-color has-text-color" style="color:#ffffff">Sample outcomes clients seek</h2>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:list -->
|
||||
<ul><li>Executive Reinvention, driven by ontological changes</li><li>Working with a team of people to achieve what is considered impossible today</li><li>Identify your winning strategy and what's holding you back from leading a team to achieve the impossible</li></ul>
|
||||
<!-- /wp:list -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"},"color":{"text":"#cbd5e1"}}} -->
|
||||
<p style="color:#cbd5e1;font-size:14px">Coaching is a partnership designed for growth — outcomes depend on commitment and context.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"60px","left":"24px","right":"24px"},"blockGap":"24px"}},"layout":{"type":"constrained","contentSize":"1400px"}} -->
|
||||
<div class="wp-block-group" style="padding-top:60px;padding-right:24px;padding-bottom:60px;padding-left:24px"><!-- wp:heading {"level":2} -->
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"0px","left":"24px","right":"24px"},"blockGap":"24px"}},"layout":{"type":"constrained","contentSize":"1400px"}} -->
|
||||
<div class="wp-block-group" style="padding-top:60px;padding-right:24px;padding-bottom:0px;padding-left:24px"><!-- wp:heading {"level":2} -->
|
||||
<h2>What they're Saying</h2>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:columns -->
|
||||
<div class="wp-block-columns"><!-- wp:column {"style":{"spacing":{"padding":{"top":"24px","right":"24px","bottom":"24px","left":"24px"}},"border":{"radius":"8px"},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-column has-background" style="border-radius:8px;background-color:#f8fafc;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:paragraph {"style":{"typography":{"fontSize":"16px"}}} -->
|
||||
<p style="font-size:16px">“Clear, grounding, and strategic. I left each session with a concrete action and a deeper sense of purpose.”</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"},"color":{"text":"#475569"}}} -->
|
||||
<p style="color:#475569;font-size:14px"><em>— CEO and B2B SaaS Founder</em></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"style":{"spacing":{"padding":{"top":"24px","right":"24px","bottom":"24px","left":"24px"}},"border":{"radius":"8px"},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-column has-background" style="border-radius:8px;background-color:#f8fafc;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:paragraph {"style":{"typography":{"fontSize":"16px"}}} -->
|
||||
<p style="font-size:16px">“Helped me reframe my leadership narrative and show up with more authority.”</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"},"color":{"text":"#475569"}}} -->
|
||||
<p style="color:#475569;font-size:14px"><em>— Founder and CEO</em></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"60px","left":"24px","right":"24px"},"blockGap":"24px"}},"layout":{"type":"constrained","contentSize":"1100px"}} -->
|
||||
<div class="wp-block-group" style="padding-top:60px;padding-right:24px;padding-bottom:60px;padding-left:24px"><!-- wp:heading {"level":2} -->
|
||||
<h2>Pricing</h2>
|
||||
<div class="wp-block-group" style="padding-top:60px;padding-right:24px;padding-bottom:60px;padding-left:24px"><!-- wp:heading {"level":2,"anchor":"pricing"} -->
|
||||
<h2 id="pricing">Pricing</h2>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:columns -->
|
||||
<div class="wp-block-columns">
|
||||
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"16px"},"spacing":{"padding":{"top":"24px","bottom":"24px","left":"24px","right":"24px"}},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:16px;background-color:#f8fafc;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px">Initial Assessment</h3>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"24px","fontWeight":"700"}}} -->
|
||||
<p style="font-size:24px;font-weight:700">Free</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p>30 minutes</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:buttons -->
|
||||
<div class="wp-block-buttons"><!-- wp:button {"style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"10px","bottom":"10px","left":"18px","right":"18px"}},"color":{"background":"#0f172a","text":"#ffffff"}},"width":100} -->
|
||||
<div class="wp-block-button has-custom-width wp-block-button__width-100"><a class="wp-block-button__link has-text-color has-background" href="/schedule/" style="border-radius:999px;background-color:#0f172a;color:#ffffff;padding-top:10px;padding-right:18px;padding-bottom:10px;padding-left:18px;text-align:center">Book Now</a></div>
|
||||
<div class="wp-block-button has-custom-width wp-block-button__width-100"><a class="wp-block-button__link has-text-color has-background" href="https://calendly.com/ktmckeand/60-minute-meeting" style="border-radius:999px;background-color:#0f172a;color:#ffffff;padding-top:10px;padding-right:18px;padding-bottom:10px;padding-left:18px;text-align:center">Book Now</a></div>
|
||||
<!-- /wp:button --></div>
|
||||
<!-- /wp:buttons --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"16px"},"spacing":{"padding":{"top":"24px","bottom":"24px","left":"24px","right":"24px"}},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:16px;background-color:#f8fafc;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px">Coaching</h3>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"24px","fontWeight":"700"}}} -->
|
||||
<p style="font-size:24px;font-weight:700">$550 <span style="font-size:16px;font-weight:400">/ hour</span></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p>Minimum of one hour</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:buttons -->
|
||||
<div class="wp-block-buttons"><!-- wp:button {"style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"10px","bottom":"10px","left":"18px","right":"18px"}},"color":{"background":"#0f172a","text":"#ffffff"}},"width":100} -->
|
||||
<div class="wp-block-button has-custom-width wp-block-button__width-100"><a class="wp-block-button__link has-text-color has-background" href="/pay/" style="border-radius:999px;background-color:#0f172a;color:#ffffff;padding-top:10px;padding-right:18px;padding-bottom:10px;padding-left:18px;text-align:center">Book Now</a></div>
|
||||
<div class="wp-block-button has-custom-width wp-block-button__width-100"><a class="wp-block-button__link has-text-color has-background" href="https://calendly.com/ktmckeand/60-minute-meeting" style="border-radius:999px;background-color:#0f172a;color:#ffffff;padding-top:10px;padding-right:18px;padding-bottom:10px;padding-left:18px;text-align:center">Book Now</a></div>
|
||||
<!-- /wp:button --></div>
|
||||
<!-- /wp:buttons --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"16px"},"spacing":{"padding":{"top":"24px","bottom":"24px","left":"24px","right":"24px"}},"color":{"background":"#e2e8f0"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:16px;background-color:#e2e8f0;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px">Coaching Package</h3>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"24px","fontWeight":"700"}}} -->
|
||||
<p style="font-size:24px;font-weight:700">$1,500 <span style="font-size:16px;font-weight:400">/ month</span></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:buttons -->
|
||||
<div class="wp-block-buttons"><!-- wp:button {"style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"10px","bottom":"10px","left":"18px","right":"18px"}},"color":{"background":"#0f172a","text":"#ffffff"}},"width":100} -->
|
||||
<div class="wp-block-button has-custom-width wp-block-button__width-100"><a class="wp-block-button__link has-text-color has-background" href="/pay/" style="border-radius:999px;background-color:#0f172a;color:#ffffff;padding-top:10px;padding-right:18px;padding-bottom:10px;padding-left:18px;text-align:center">Book Now</a></div>
|
||||
<div class="wp-block-button has-custom-width wp-block-button__width-100"><a class="wp-block-button__link has-text-color has-background" href="https://calendly.com/ktmckeand/60-minute-meeting" style="border-radius:999px;background-color:#0f172a;color:#ffffff;padding-top:10px;padding-right:18px;padding-bottom:10px;padding-left:18px;text-align:center">Book Now</a></div>
|
||||
<!-- /wp:button --></div>
|
||||
<!-- /wp:buttons -->
|
||||
|
||||
<!-- wp:paragraph {"align":"center"} -->
|
||||
<p class="has-text-align-center">Includes 4 hours of coaching</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
</div>
|
||||
<!-- /wp:columns -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"80px","left":"24px","right":"24px"},"blockGap":"16px"},"color":{"background":"#f1f5f9"}},"layout":{"type":"constrained","contentSize":"1100px"}} -->
|
||||
<div class="wp-block-group has-background" style="background-color:#f1f5f9;padding-top:60px;padding-right:24px;padding-bottom:80px;padding-left:24px"><!-- wp:heading {"level":2} -->
|
||||
<h2>Ready to explore coaching?</h2>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p>Start with a 30‑minute fit call to assess alignment, goals, and the best coaching path.</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:buttons -->
|
||||
<div class="wp-block-buttons"><!-- wp:button {"style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"12px","bottom":"12px","left":"22px","right":"22px"}},"color":{"background":"#0f172a","text":"#ffffff"}}} -->
|
||||
<div class="wp-block-button"><a class="wp-block-button__link has-text-color has-background" href="/schedule/" style="border-radius:999px;background-color:#0f172a;color:#ffffff;padding-top:12px;padding-right:22px;padding-bottom:12px;padding-left:22px">Schedule an initial assessment</a></div>
|
||||
<div class="wp-block-button"><a class="wp-block-button__link has-text-color has-background" href="https://calendly.com/ktmckeand/60-minute-meeting" style="border-radius:999px;background-color:#0f172a;color:#ffffff;padding-top:12px;padding-right:22px;padding-bottom:12px;padding-left:22px">Schedule an initial assessment</a></div>
|
||||
<!-- /wp:button --></div>
|
||||
<!-- /wp:buttons --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
192
tmp_home_current2.html
Normal file
192
tmp_home_current2.html
Normal file
@ -0,0 +1,192 @@
|
||||
<!-- wp:group {"layout":{"type":"constrained","contentSize":"1100px"},"style":{"spacing":{"padding":{"top":"40px","bottom":"20px","left":"24px","right":"24px"}}}} -->
|
||||
<div class="wp-block-group" style="padding-top:40px;padding-right:24px;padding-bottom:20px;padding-left:24px">
|
||||
<!-- wp:image {"align":"center","className":"is-resized"} -->
|
||||
<figure class="wp-block-image aligncenter is-resized"><img src="/wp-content/uploads/2026/03/pasted-20260312-192203-5bf6a392.png" alt="Kevin McKeand" style="border-radius:16px;width:100%;max-width:1100px;height:350px;object-fit:cover;object-position:center 20%;"/></figure>
|
||||
<!-- /wp:image -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"80px","bottom":"80px","left":"24px","right":"24px"}},"color":{"background":"#316263"}},"textColor":"white","layout":{"type":"constrained","contentSize":"1100px"}} -->
|
||||
<div class="wp-block-group has-white-color has-text-color has-background" style="background-color:#316263;padding-top:80px;padding-right:24px;padding-bottom:80px;padding-left:24px"><!-- wp:columns {"verticalAlignment":"center","style":{"spacing":{"blockGap":"40px"}}} -->
|
||||
<div class="wp-block-columns are-vertically-aligned-center"><!-- wp:column {"verticalAlignment":"center"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center"><!-- wp:heading {"level":1,"style":{"typography":{"fontSize":"54px","lineHeight":"1.05"},"color":{"text":"#ffffff"}},"textColor":"white"} -->
|
||||
<h1 class="has-white-color has-text-color" style="font-size:54px;line-height:1.05;color:#ffffff">Executive and Life Coaching to Achieve your Potential</h1>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px","lineHeight":"1.7"}}} -->
|
||||
<p style="font-size:18px;line-height:1.7">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.</p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:buttons {"style":{"spacing":{"blockGap":"16px"}}} -->
|
||||
<div class="wp-block-buttons"><!-- wp:button {"backgroundColor":"white","textColor":"black","style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"12px","bottom":"12px","left":"22px","right":"22px"}}}} -->
|
||||
<div class="wp-block-button"><a class="wp-block-button__link has-black-color has-white-background-color has-text-color has-background" href="https://calendly.com/ktmckeand/60-minute-meeting" style="border-radius:999px;padding-top:12px;padding-right:22px;padding-bottom:12px;padding-left:22px">Schedule an initial assessment</a></div>
|
||||
<!-- /wp:button -->
|
||||
<!-- wp:button {"style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"12px","bottom":"12px","left":"22px","right":"22px"}},"color":{"text":"#ffffff","background":"#334155"}}} -->
|
||||
<div class="wp-block-button"><a class="wp-block-button__link has-text-color has-background" href="#pricing" style="border-radius:999px;background-color:#334155;color:#ffffff;padding-top:12px;padding-right:22px;padding-bottom:12px;padding-left:22px">View coaching options</a></div>
|
||||
<!-- /wp:button --></div>
|
||||
<!-- /wp:buttons -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"},"color":{"text":"#cbd5e1"}}} -->
|
||||
<p style="color:#cbd5e1;font-size:14px">Purpose: enable others to achieve their potential.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:column -->
|
||||
<!-- wp:column {"verticalAlignment":"center"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center"><!-- wp:group {"style":{"spacing":{"padding":{"top":"24px","bottom":"24px","left":"24px","right":"24px"},"blockGap":"16px"},"border":{"radius":"16px"},"color":{"background":"#316263"}},"textColor":"white"} -->
|
||||
<div class="wp-block-group has-white-color has-text-color has-background" style="border-radius:16px;background-color:#316263;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:paragraph {"style":{"typography":{"fontSize":"16px"},"color":{"text":"#ffffff"}},"textColor":"white"} -->
|
||||
<p class="has-white-color has-text-color" style="font-size:16px;color:#ffffff"><strong>Credentials</strong></p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:list -->
|
||||
<ul><li>ICF PCC Certified Executive and Life Coach</li><li>Trained in Adaptive Leadership Styles and Personal and Professional Transformations</li></ul>
|
||||
<!-- /wp:list -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"},"color":{"text":"#94a3b8"}}} -->
|
||||
<p style="color:#94a3b8;font-size:14px">Confidential. Insightful. Practical.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"60px","left":"24px","right":"24px"},"blockGap":"28px"}},"layout":{"type":"constrained","contentSize":"1100px"}} -->
|
||||
<div class="wp-block-group" style="padding-top:60px;padding-right:24px;padding-bottom:60px;padding-left:24px"><!-- wp:heading {"level":2} -->
|
||||
<h2>How we work together</h2>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:columns -->
|
||||
<div class="wp-block-columns"><!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"14px"},"spacing":{"padding":{"top":"20px","bottom":"20px","left":"20px","right":"20px"}},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:14px;background-color:#f8fafc;padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:20px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px">1. Clarity & context</h3>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:paragraph -->
|
||||
<p>Identify the real challenge beneath the symptom, and name the narrative shaping your decisions.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"14px"},"spacing":{"padding":{"top":"20px","bottom":"20px","left":"20px","right":"20px"}},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:14px;background-color:#f8fafc;padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:20px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px">2. Adaptive experiments</h3>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:paragraph -->
|
||||
<p>Design small experiments to expand capability, build confidence, and improve leadership presence.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"14px"},"spacing":{"padding":{"top":"20px","bottom":"20px","left":"20px","right":"20px"}},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:14px;background-color:#f8fafc;padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:20px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px">3. Integration & accountability</h3>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:paragraph -->
|
||||
<p>Apply new behaviors in your real-world environment and reflect on the results.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"60px","left":"24px","right":"24px"},"blockGap":"24px"},"color":{"background":"#316263"}},"textColor":"white","layout":{"type":"constrained","contentSize":"1100px"}} -->
|
||||
<div class="wp-block-group has-white-color has-text-color has-background" style="background-color:#316263;padding-top:60px;padding-right:24px;padding-bottom:60px;padding-left:24px"><!-- wp:heading {"level":2,"style":{"color":{"text":"#ffffff"}},"textColor":"white"} -->
|
||||
<h2 class="has-white-color has-text-color" style="color:#ffffff">Sample outcomes clients seek</h2>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:list -->
|
||||
<ul><li>Executive Reinvention, driven by ontological changes</li><li>Working with a team of people to achieve what is considered impossible today</li><li>Identify your winning strategy and what's holding you back from leading a team to achieve the impossible</li></ul>
|
||||
<!-- /wp:list -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"},"color":{"text":"#cbd5e1"}}} -->
|
||||
<p style="color:#cbd5e1;font-size:14px">Coaching is a partnership designed for growth — outcomes depend on commitment and context.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"0px","left":"24px","right":"24px"},"blockGap":"24px"}},"layout":{"type":"constrained","contentSize":"1400px"}} -->
|
||||
<div class="wp-block-group" style="padding-top:60px;padding-right:24px;padding-bottom:0px;padding-left:24px"><!-- wp:heading {"level":2} -->
|
||||
<h2>What they're Saying</h2>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:columns -->
|
||||
<div class="wp-block-columns"><!-- wp:column {"style":{"spacing":{"padding":{"top":"24px","right":"24px","bottom":"24px","left":"24px"}},"border":{"radius":"8px"},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-column has-background" style="border-radius:8px;background-color:#f8fafc;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:paragraph {"style":{"typography":{"fontSize":"16px"}}} -->
|
||||
<p style="font-size:16px">“Clear, grounding, and strategic. I left each session with a concrete action and a deeper sense of purpose.”</p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"},"color":{"text":"#475569"}}} -->
|
||||
<p style="color:#475569;font-size:14px"><em>— CEO and B2B SaaS Founder</em></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:column -->
|
||||
<!-- wp:column {"style":{"spacing":{"padding":{"top":"24px","right":"24px","bottom":"24px","left":"24px"}},"border":{"radius":"8px"},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-column has-background" style="border-radius:8px;background-color:#f8fafc;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:paragraph {"style":{"typography":{"fontSize":"16px"}}} -->
|
||||
<p style="font-size:16px">“Helped me reframe my leadership narrative and show up with more authority.”</p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"},"color":{"text":"#475569"}}} -->
|
||||
<p style="color:#475569;font-size:14px"><em>— Founder and CEO</em></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"60px","left":"24px","right":"24px"},"blockGap":"24px"}},"layout":{"type":"constrained","contentSize":"1100px"}} -->
|
||||
<div class="wp-block-group" style="padding-top:60px;padding-right:24px;padding-bottom:60px;padding-left:24px"><!-- wp:heading {"level":2,"anchor":"pricing"} -->
|
||||
<h2 id="pricing">Pricing</h2>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:columns -->
|
||||
<div class="wp-block-columns">
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"16px"},"spacing":{"padding":{"top":"24px","bottom":"24px","left":"24px","right":"24px"}},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:16px;background-color:#f8fafc;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px;min-height:60px">Initial Assessment</h3>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"24px","fontWeight":"700"}}} -->
|
||||
<p style="font-size:24px;font-weight:700">Free</p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:paragraph -->
|
||||
<p>30 minutes</p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:buttons -->
|
||||
<div class="wp-block-buttons"><!-- wp:button {"style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"10px","bottom":"10px","left":"18px","right":"18px"}},"color":{"background":"#0f172a","text":"#ffffff"}},"width":100} -->
|
||||
<div class="wp-block-button has-custom-width wp-block-button__width-100"><a class="wp-block-button__link has-text-color has-background" href="https://calendly.com/ktmckeand/60-minute-meeting" style="border-radius:999px;background-color:#0f172a;color:#ffffff;padding-top:10px;padding-right:18px;padding-bottom:10px;padding-left:18px;text-align:center">Book Now</a></div>
|
||||
<!-- /wp:button --></div>
|
||||
<!-- /wp:buttons --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"16px"},"spacing":{"padding":{"top":"24px","bottom":"24px","left":"24px","right":"24px"}},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:16px;background-color:#f8fafc;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px">Coaching</h3>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"24px","fontWeight":"700"}}} -->
|
||||
<p style="font-size:24px;font-weight:700">$550 <span style="font-size:16px;font-weight:400">/ hour</span></p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:paragraph -->
|
||||
<p>Minimum of one hour</p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:buttons -->
|
||||
<div class="wp-block-buttons"><!-- wp:button {"style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"10px","bottom":"10px","left":"18px","right":"18px"}},"color":{"background":"#0f172a","text":"#ffffff"}},"width":100} -->
|
||||
<div class="wp-block-button has-custom-width wp-block-button__width-100"><a class="wp-block-button__link has-text-color has-background" href="https://calendly.com/ktmckeand/60-minute-meeting" style="border-radius:999px;background-color:#0f172a;color:#ffffff;padding-top:10px;padding-right:18px;padding-bottom:10px;padding-left:18px;text-align:center">Book Now</a></div>
|
||||
<!-- /wp:button --></div>
|
||||
<!-- /wp:buttons --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"16px"},"spacing":{"padding":{"top":"24px","bottom":"24px","left":"24px","right":"24px"}},"color":{"background":"#e2e8f0"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:16px;background-color:#e2e8f0;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px;min-height:60px">Coaching Package</h3>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"24px","fontWeight":"700"}}} -->
|
||||
<p style="font-size:24px;font-weight:700">$1,500 <span style="font-size:16px;font-weight:400">/ month</span></p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:buttons -->
|
||||
<div class="wp-block-buttons"><!-- wp:button {"style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"10px","bottom":"10px","left":"18px","right":"18px"}},"color":{"background":"#0f172a","text":"#ffffff"}},"width":100} -->
|
||||
<div class="wp-block-button has-custom-width wp-block-button__width-100"><a class="wp-block-button__link has-text-color has-background" href="https://calendly.com/ktmckeand/60-minute-meeting" style="border-radius:999px;background-color:#0f172a;color:#ffffff;padding-top:10px;padding-right:18px;padding-bottom:10px;padding-left:18px;text-align:center">Book Now</a></div>
|
||||
<!-- /wp:button --></div>
|
||||
<!-- /wp:buttons -->
|
||||
<!-- wp:paragraph {"align":"center"} -->
|
||||
<p class="has-text-align-center">Includes 4 hours of coaching</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
</div>
|
||||
<!-- /wp:columns -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"80px","left":"24px","right":"24px"},"blockGap":"16px"},"color":{"background":"#f1f5f9"}},"layout":{"type":"constrained","contentSize":"1100px"}} -->
|
||||
<div class="wp-block-group has-background" style="background-color:#f1f5f9;padding-top:60px;padding-right:24px;padding-bottom:80px;padding-left:24px"><!-- wp:heading {"level":2} -->
|
||||
<h2>Ready to explore coaching?</h2>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:paragraph -->
|
||||
<p>Start with a 30‑minute fit call to assess alignment, goals, and the best coaching path.</p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:buttons -->
|
||||
<div class="wp-block-buttons"><!-- wp:button {"style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"12px","bottom":"12px","left":"22px","right":"22px"}},"color":{"background":"#0f172a","text":"#ffffff"}}} -->
|
||||
<div class="wp-block-button"><a class="wp-block-button__link has-text-color has-background" href="https://calendly.com/ktmckeand/60-minute-meeting" style="border-radius:999px;background-color:#0f172a;color:#ffffff;padding-top:12px;padding-right:22px;padding-bottom:12px;padding-left:22px">Schedule an initial assessment</a></div>
|
||||
<!-- /wp:button --></div>
|
||||
<!-- /wp:buttons --></div>
|
||||
<!-- /wp:group -->
|
||||
192
tmp_home_current3.html
Normal file
192
tmp_home_current3.html
Normal file
@ -0,0 +1,192 @@
|
||||
<!-- wp:group {"layout":{"type":"constrained","contentSize":"1100px"},"style":{"spacing":{"padding":{"top":"40px","bottom":"20px","left":"24px","right":"24px"}}}} -->
|
||||
<div class="wp-block-group" style="padding-top:40px;padding-right:24px;padding-bottom:20px;padding-left:24px">
|
||||
<!-- wp:image {"align":"center","className":"is-resized"} -->
|
||||
<figure class="wp-block-image aligncenter is-resized"><img src="/wp-content/uploads/2026/03/pasted-20260312-192203-5bf6a392.png" alt="Kevin McKeand" style="border-radius:16px;width:100%;max-width:1100px;height:350px;object-fit:cover;object-position:center 20%;"/></figure>
|
||||
<!-- /wp:image -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"80px","bottom":"80px","left":"24px","right":"24px"}},"color":{"background":"#316263"}},"textColor":"white","layout":{"type":"constrained","contentSize":"1100px"}} -->
|
||||
<div class="wp-block-group has-white-color has-text-color has-background" style="background-color:#316263;padding-top:80px;padding-right:24px;padding-bottom:80px;padding-left:24px"><!-- wp:columns {"verticalAlignment":"center","style":{"spacing":{"blockGap":"40px"}}} -->
|
||||
<div class="wp-block-columns are-vertically-aligned-center"><!-- wp:column {"verticalAlignment":"center"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center"><!-- wp:heading {"level":1,"style":{"typography":{"fontSize":"54px","lineHeight":"1.05"},"color":{"text":"#ffffff"}},"textColor":"white"} -->
|
||||
<h1 class="has-white-color has-text-color" style="font-size:54px;line-height:1.05;color:#ffffff">Executive and Life Coaching to Achieve your Potential</h1>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px","lineHeight":"1.7"}}} -->
|
||||
<p style="font-size:18px;line-height:1.7">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.</p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:buttons {"style":{"spacing":{"blockGap":"16px"}}} -->
|
||||
<div class="wp-block-buttons"><!-- wp:button {"backgroundColor":"white","textColor":"black","style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"12px","bottom":"12px","left":"22px","right":"22px"}}}} -->
|
||||
<div class="wp-block-button"><a class="wp-block-button__link has-black-color has-white-background-color has-text-color has-background" href="https://calendly.com/ktmckeand/60-minute-meeting" style="border-radius:999px;padding-top:12px;padding-right:22px;padding-bottom:12px;padding-left:22px">Schedule an initial assessment</a></div>
|
||||
<!-- /wp:button -->
|
||||
<!-- wp:button {"style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"12px","bottom":"12px","left":"22px","right":"22px"}},"color":{"text":"#ffffff","background":"#334155"}}} -->
|
||||
<div class="wp-block-button"><a class="wp-block-button__link has-text-color has-background" href="#pricing" style="border-radius:999px;background-color:#334155;color:#ffffff;padding-top:12px;padding-right:22px;padding-bottom:12px;padding-left:22px">View coaching options</a></div>
|
||||
<!-- /wp:button --></div>
|
||||
<!-- /wp:buttons -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"},"color":{"text":"#cbd5e1"}}} -->
|
||||
<p style="color:#cbd5e1;font-size:14px">Purpose: enable others to achieve their potential.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:column -->
|
||||
<!-- wp:column {"verticalAlignment":"center"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center"><!-- wp:group {"style":{"spacing":{"padding":{"top":"24px","bottom":"24px","left":"24px","right":"24px"},"blockGap":"16px"},"border":{"radius":"16px"},"color":{"background":"#316263"}},"textColor":"white"} -->
|
||||
<div class="wp-block-group has-white-color has-text-color has-background" style="border-radius:16px;background-color:#316263;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:paragraph {"style":{"typography":{"fontSize":"18px"},"color":{"text":"#ffffff"}},"textColor":"white"} -->
|
||||
<p class="has-white-color has-text-color" style="font-size:18px;color:#ffffff"><strong>Credentials</strong></p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:list {"style":{"typography":{"fontSize":"18px"}}} -->
|
||||
<ul style="font-size:18px"><li>ICF PCC Certified Executive and Life Coach</li><li>Trained in Adaptive Leadership Styles and Personal and Professional Transformations</li></ul>
|
||||
<!-- /wp:list -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px"},"color":{"text":"#94a3b8"}}} -->
|
||||
<p style="color:#94a3b8;font-size:18px">Confidential. Insightful. Practical.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"60px","left":"24px","right":"24px"},"blockGap":"28px"}},"layout":{"type":"constrained","contentSize":"1100px"}} -->
|
||||
<div class="wp-block-group" style="padding-top:60px;padding-right:24px;padding-bottom:60px;padding-left:24px"><!-- wp:heading {"level":2} -->
|
||||
<h2>How we work together</h2>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:columns -->
|
||||
<div class="wp-block-columns"><!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"14px"},"spacing":{"padding":{"top":"20px","bottom":"20px","left":"20px","right":"20px"}},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:14px;background-color:#f8fafc;padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:20px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px">1. Clarity & context</h3>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:paragraph -->
|
||||
<p>Identify the real challenge beneath the symptom, and name the narrative shaping your decisions.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"14px"},"spacing":{"padding":{"top":"20px","bottom":"20px","left":"20px","right":"20px"}},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:14px;background-color:#f8fafc;padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:20px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px">2. Adaptive experiments</h3>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:paragraph -->
|
||||
<p>Design small experiments to expand capability, build confidence, and improve leadership presence.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"14px"},"spacing":{"padding":{"top":"20px","bottom":"20px","left":"20px","right":"20px"}},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:14px;background-color:#f8fafc;padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:20px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px">3. Integration & accountability</h3>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:paragraph -->
|
||||
<p>Apply new behaviors in your real-world environment and reflect on the results.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"60px","left":"24px","right":"24px"},"blockGap":"24px"},"color":{"background":"#316263"}},"textColor":"white","layout":{"type":"constrained","contentSize":"1100px"}} -->
|
||||
<div class="wp-block-group has-white-color has-text-color has-background" style="background-color:#316263;padding-top:60px;padding-right:24px;padding-bottom:60px;padding-left:24px"><!-- wp:heading {"level":2,"style":{"color":{"text":"#ffffff"}},"textColor":"white"} -->
|
||||
<h2 class="has-white-color has-text-color" style="color:#ffffff">Sample outcomes clients seek</h2>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:list -->
|
||||
<ul><li>Executive Reinvention, driven by ontological changes</li><li>Working with a team of people to achieve what is considered impossible today</li><li>Identify your winning strategy and what's holding you back from leading a team to achieve the impossible</li></ul>
|
||||
<!-- /wp:list -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"},"color":{"text":"#cbd5e1"}}} -->
|
||||
<p style="color:#cbd5e1;font-size:14px">Coaching is a partnership designed for growth — outcomes depend on commitment and context.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"0px","left":"24px","right":"24px"},"blockGap":"24px"}},"layout":{"type":"constrained","contentSize":"1400px"}} -->
|
||||
<div class="wp-block-group" style="padding-top:60px;padding-right:24px;padding-bottom:0px;padding-left:24px"><!-- wp:heading {"level":2} -->
|
||||
<h2>What they're Saying</h2>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:columns -->
|
||||
<div class="wp-block-columns"><!-- wp:column {"style":{"spacing":{"padding":{"top":"24px","right":"24px","bottom":"24px","left":"24px"}},"border":{"radius":"8px"},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-column has-background" style="border-radius:8px;background-color:#f8fafc;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:paragraph {"style":{"typography":{"fontSize":"16px"}}} -->
|
||||
<p style="font-size:16px">“Clear, grounding, and strategic. I left each session with a concrete action and a deeper sense of purpose.”</p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"},"color":{"text":"#475569"}}} -->
|
||||
<p style="color:#475569;font-size:14px"><em>— CEO and B2B SaaS Founder</em></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:column -->
|
||||
<!-- wp:column {"style":{"spacing":{"padding":{"top":"24px","right":"24px","bottom":"24px","left":"24px"}},"border":{"radius":"8px"},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-column has-background" style="border-radius:8px;background-color:#f8fafc;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:paragraph {"style":{"typography":{"fontSize":"16px"}}} -->
|
||||
<p style="font-size:16px">“Helped me reframe my leadership narrative and show up with more authority.”</p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"},"color":{"text":"#475569"}}} -->
|
||||
<p style="color:#475569;font-size:14px"><em>— Founder and CEO</em></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"60px","left":"24px","right":"24px"},"blockGap":"24px"}},"layout":{"type":"constrained","contentSize":"1100px"}} -->
|
||||
<div class="wp-block-group" style="padding-top:60px;padding-right:24px;padding-bottom:60px;padding-left:24px"><!-- wp:heading {"level":2,"anchor":"pricing"} -->
|
||||
<h2 id="pricing">Pricing</h2>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:columns -->
|
||||
<div class="wp-block-columns">
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"16px"},"spacing":{"padding":{"top":"24px","bottom":"24px","left":"24px","right":"24px"}},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:16px;background-color:#f8fafc;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px;min-height:60px">Initial Assessment</h3>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"24px","fontWeight":"700"}}} -->
|
||||
<p style="font-size:24px;font-weight:700">Free</p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:paragraph -->
|
||||
<p>30 minutes</p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:buttons -->
|
||||
<div class="wp-block-buttons"><!-- wp:button {"style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"10px","bottom":"10px","left":"18px","right":"18px"}},"color":{"background":"#0f172a","text":"#ffffff"}},"width":100} -->
|
||||
<div class="wp-block-button has-custom-width wp-block-button__width-100"><a class="wp-block-button__link has-text-color has-background" href="https://calendly.com/ktmckeand/60-minute-meeting" style="border-radius:999px;background-color:#0f172a;color:#ffffff;padding-top:10px;padding-right:18px;padding-bottom:10px;padding-left:18px;text-align:center">Book Now</a></div>
|
||||
<!-- /wp:button --></div>
|
||||
<!-- /wp:buttons --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"16px"},"spacing":{"padding":{"top":"24px","bottom":"24px","left":"24px","right":"24px"}},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:16px;background-color:#f8fafc;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px;min-height:60px">Coaching</h3>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"24px","fontWeight":"700"}}} -->
|
||||
<p style="font-size:24px;font-weight:700">$500 <span style="font-size:16px;font-weight:400">/ hour</span></p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:paragraph -->
|
||||
<p>Minimum of one hour</p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:buttons -->
|
||||
<div class="wp-block-buttons"><!-- wp:button {"style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"10px","bottom":"10px","left":"18px","right":"18px"}},"color":{"background":"#0f172a","text":"#ffffff"}},"width":100} -->
|
||||
<div class="wp-block-button has-custom-width wp-block-button__width-100"><a class="wp-block-button__link has-text-color has-background" href="https://calendly.com/ktmckeand/60-minute-meeting" style="border-radius:999px;background-color:#0f172a;color:#ffffff;padding-top:10px;padding-right:18px;padding-bottom:10px;padding-left:18px;text-align:center">Book Now</a></div>
|
||||
<!-- /wp:button --></div>
|
||||
<!-- /wp:buttons --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"16px"},"spacing":{"padding":{"top":"24px","bottom":"24px","left":"24px","right":"24px"}},"color":{"background":"#e2e8f0"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:16px;background-color:#e2e8f0;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px;min-height:60px">Coaching Package</h3>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"24px","fontWeight":"700"}}} -->
|
||||
<p style="font-size:24px;font-weight:700">$1,500 <span style="font-size:16px;font-weight:400">/ month</span></p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:buttons -->
|
||||
<div class="wp-block-buttons"><!-- wp:button {"style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"10px","bottom":"10px","left":"18px","right":"18px"}},"color":{"background":"#0f172a","text":"#ffffff"}},"width":100} -->
|
||||
<div class="wp-block-button has-custom-width wp-block-button__width-100"><a class="wp-block-button__link has-text-color has-background" href="https://calendly.com/ktmckeand/60-minute-meeting" style="border-radius:999px;background-color:#0f172a;color:#ffffff;padding-top:10px;padding-right:18px;padding-bottom:10px;padding-left:18px;text-align:center">Book Now</a></div>
|
||||
<!-- /wp:button --></div>
|
||||
<!-- /wp:buttons -->
|
||||
<!-- wp:paragraph {"align":"center"} -->
|
||||
<p class="has-text-align-center">Includes 4 hours of coaching</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
</div>
|
||||
<!-- /wp:columns -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"80px","left":"24px","right":"24px"},"blockGap":"16px"},"color":{"background":"#f1f5f9"}},"layout":{"type":"constrained","contentSize":"1100px"}} -->
|
||||
<div class="wp-block-group has-background" style="background-color:#f1f5f9;padding-top:60px;padding-right:24px;padding-bottom:80px;padding-left:24px"><!-- wp:heading {"level":2} -->
|
||||
<h2>Ready to explore coaching?</h2>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:paragraph -->
|
||||
<p>Start with a 30‑minute fit call to assess alignment, goals, and the best coaching path.</p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:buttons -->
|
||||
<div class="wp-block-buttons"><!-- wp:button {"style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"12px","bottom":"12px","left":"22px","right":"22px"}},"color":{"background":"#0f172a","text":"#ffffff"}}} -->
|
||||
<div class="wp-block-button"><a class="wp-block-button__link has-text-color has-background" href="https://calendly.com/ktmckeand/60-minute-meeting" style="border-radius:999px;background-color:#0f172a;color:#ffffff;padding-top:12px;padding-right:22px;padding-bottom:12px;padding-left:22px">Schedule an initial assessment</a></div>
|
||||
<!-- /wp:button --></div>
|
||||
<!-- /wp:buttons --></div>
|
||||
<!-- /wp:group -->
|
||||
192
tmp_home_final.html
Normal file
192
tmp_home_final.html
Normal file
@ -0,0 +1,192 @@
|
||||
<!-- wp:group {"layout":{"type":"constrained","contentSize":"1100px"},"style":{"spacing":{"padding":{"top":"40px","bottom":"20px","left":"24px","right":"24px"}}}} -->
|
||||
<div class="wp-block-group" style="padding-top:40px;padding-right:24px;padding-bottom:20px;padding-left:24px">
|
||||
<!-- wp:image {"align":"center","className":"is-resized"} -->
|
||||
<figure class="wp-block-image aligncenter is-resized"><img src="/wp-content/uploads/2026/03/pasted-20260312-192203-5bf6a392.png" alt="Kevin McKeand" style="border-radius:16px;width:100%;max-width:1100px;height:350px;object-fit:cover;object-position:center 20%;"/></figure>
|
||||
<!-- /wp:image -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"80px","bottom":"80px","left":"24px","right":"24px"}},"color":{"background":"#316263"}},"textColor":"white","layout":{"type":"constrained","contentSize":"1100px"}} -->
|
||||
<div class="wp-block-group has-white-color has-text-color has-background" style="background-color:#316263;padding-top:80px;padding-right:24px;padding-bottom:80px;padding-left:24px"><!-- wp:columns {"verticalAlignment":"center","style":{"spacing":{"blockGap":"40px"}}} -->
|
||||
<div class="wp-block-columns are-vertically-aligned-center"><!-- wp:column {"verticalAlignment":"center"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center"><!-- wp:heading {"level":1,"style":{"typography":{"fontSize":"54px","lineHeight":"1.05"},"color":{"text":"#ffffff"}},"textColor":"white"} -->
|
||||
<h1 class="has-white-color has-text-color" style="font-size:54px;line-height:1.05;color:#ffffff">Executive and Life Coaching to Achieve your Potential</h1>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px","lineHeight":"1.7"}}} -->
|
||||
<p style="font-size:18px;line-height:1.7">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.</p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:buttons {"style":{"spacing":{"blockGap":"16px"}}} -->
|
||||
<div class="wp-block-buttons"><!-- wp:button {"backgroundColor":"white","textColor":"black","style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"12px","bottom":"12px","left":"22px","right":"22px"}}}} -->
|
||||
<div class="wp-block-button"><a class="wp-block-button__link has-black-color has-white-background-color has-text-color has-background" href="https://calendly.com/ktmckeand/60-minute-meeting" style="border-radius:999px;padding-top:12px;padding-right:22px;padding-bottom:12px;padding-left:22px">Schedule an initial assessment</a></div>
|
||||
<!-- /wp:button -->
|
||||
<!-- wp:button {"style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"12px","bottom":"12px","left":"22px","right":"22px"}},"color":{"text":"#ffffff","background":"#334155"}}} -->
|
||||
<div class="wp-block-button"><a class="wp-block-button__link has-text-color has-background" href="#pricing" style="border-radius:999px;background-color:#334155;color:#ffffff;padding-top:12px;padding-right:22px;padding-bottom:12px;padding-left:22px">View coaching options</a></div>
|
||||
<!-- /wp:button --></div>
|
||||
<!-- /wp:buttons -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"},"color":{"text":"#cbd5e1"}}} -->
|
||||
<p style="color:#cbd5e1;font-size:14px">Purpose: enable others to achieve their potential.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:column -->
|
||||
<!-- wp:column {"verticalAlignment":"center"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center"><!-- wp:group {"style":{"spacing":{"padding":{"top":"24px","bottom":"24px","left":"24px","right":"24px"},"blockGap":"16px"},"border":{"radius":"16px"},"color":{"background":"#316263"}},"textColor":"white"} -->
|
||||
<div class="wp-block-group has-white-color has-text-color has-background" style="border-radius:16px;background-color:#316263;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:paragraph {"style":{"typography":{"fontSize":"18px"},"color":{"text":"#ffffff"}},"textColor":"white"} -->
|
||||
<p class="has-white-color has-text-color" style="font-size:18px;color:#ffffff"><strong>Credentials</strong></p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:list {"style":{"typography":{"fontSize":"18px"}}} -->
|
||||
<ul style="font-size:18px"><li>ICF PCC Certified Executive and Life Coach</li><li>Trained in Adaptive Leadership Styles and Personal and Professional Transformations</li></ul>
|
||||
<!-- /wp:list -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px"},"color":{"text":"#94a3b8"}}} -->
|
||||
<p style="color:#94a3b8;font-size:18px">Confidential. Insightful. Practical.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"60px","left":"24px","right":"24px"},"blockGap":"28px"}},"layout":{"type":"constrained","contentSize":"1100px"}} -->
|
||||
<div class="wp-block-group" style="padding-top:60px;padding-right:24px;padding-bottom:60px;padding-left:24px"><!-- wp:heading {"level":2} -->
|
||||
<h2>How we work together</h2>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:columns -->
|
||||
<div class="wp-block-columns"><!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"14px"},"spacing":{"padding":{"top":"20px","bottom":"20px","left":"20px","right":"20px"}},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:14px;background-color:#f8fafc;padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:20px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px">1. Clarity & context</h3>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:paragraph -->
|
||||
<p>Identify the real challenge beneath the symptom, and name the narrative shaping your decisions.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"14px"},"spacing":{"padding":{"top":"20px","bottom":"20px","left":"20px","right":"20px"}},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:14px;background-color:#f8fafc;padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:20px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px">2. Adaptive experiments</h3>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:paragraph -->
|
||||
<p>Design small experiments to expand capability, build confidence, and improve leadership presence.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"14px"},"spacing":{"padding":{"top":"20px","bottom":"20px","left":"20px","right":"20px"}},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:14px;background-color:#f8fafc;padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:20px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px">3. Integration & accountability</h3>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:paragraph -->
|
||||
<p>Apply new behaviors in your real-world environment and reflect on the results.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"60px","left":"24px","right":"24px"},"blockGap":"24px"},"color":{"background":"#316263"}},"textColor":"white","layout":{"type":"constrained","contentSize":"1100px"}} -->
|
||||
<div class="wp-block-group has-white-color has-text-color has-background" style="background-color:#316263;padding-top:60px;padding-right:24px;padding-bottom:60px;padding-left:24px"><!-- wp:heading {"level":2,"style":{"color":{"text":"#ffffff"}},"textColor":"white"} -->
|
||||
<h2 class="has-white-color has-text-color" style="color:#ffffff">Sample outcomes clients seek</h2>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:list -->
|
||||
<ul><li>Executive Reinvention, driven by ontological changes</li><li>Working with a team of people to achieve what is considered impossible today</li><li>Identify your winning strategy and what's holding you back from leading a team to achieve the impossible</li></ul>
|
||||
<!-- /wp:list -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"},"color":{"text":"#cbd5e1"}}} -->
|
||||
<p style="color:#cbd5e1;font-size:14px">Coaching is a partnership designed for growth — outcomes depend on commitment and context.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"0px","left":"24px","right":"24px"},"blockGap":"24px"}},"layout":{"type":"constrained","contentSize":"1400px"}} -->
|
||||
<div class="wp-block-group" style="padding-top:60px;padding-right:24px;padding-bottom:0px;padding-left:24px"><!-- wp:heading {"level":2} -->
|
||||
<h2>What they're Saying</h2>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:columns -->
|
||||
<div class="wp-block-columns"><!-- wp:column {"style":{"spacing":{"padding":{"top":"24px","right":"24px","bottom":"24px","left":"24px"}},"border":{"radius":"8px"},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-column has-background" style="border-radius:8px;background-color:#f8fafc;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:paragraph {"style":{"typography":{"fontSize":"16px"}}} -->
|
||||
<p style="font-size:16px">“Clear, grounding, and strategic. I left each session with a concrete action and a deeper sense of purpose.”</p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"},"color":{"text":"#475569"}}} -->
|
||||
<p style="color:#475569;font-size:14px"><em>— CEO and B2B SaaS Founder</em></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:column -->
|
||||
<!-- wp:column {"style":{"spacing":{"padding":{"top":"24px","right":"24px","bottom":"24px","left":"24px"}},"border":{"radius":"8px"},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-column has-background" style="border-radius:8px;background-color:#f8fafc;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:paragraph {"style":{"typography":{"fontSize":"16px"}}} -->
|
||||
<p style="font-size:16px">“Helped me reframe my leadership narrative and show up with more authority.”</p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"},"color":{"text":"#475569"}}} -->
|
||||
<p style="color:#475569;font-size:14px"><em>— Founder and CEO</em></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"60px","left":"24px","right":"24px"},"blockGap":"24px"}},"layout":{"type":"constrained","contentSize":"1100px"}} -->
|
||||
<div class="wp-block-group" style="padding-top:60px;padding-right:24px;padding-bottom:60px;padding-left:24px"><!-- wp:heading {"level":2,"anchor":"pricing"} -->
|
||||
<h2 id="pricing">Pricing</h2>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:columns -->
|
||||
<div class="wp-block-columns">
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"16px"},"spacing":{"padding":{"top":"24px","bottom":"24px","left":"24px","right":"24px"}},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:16px;background-color:#f8fafc;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px;min-height:60px">Initial Assessment</h3>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"24px","fontWeight":"700"}}} -->
|
||||
<p style="font-size:24px;font-weight:700">Free</p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:paragraph -->
|
||||
<p>30 minutes</p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:buttons -->
|
||||
<div class="wp-block-buttons"><!-- wp:button {"style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"10px","bottom":"10px","left":"18px","right":"18px"}},"color":{"background":"#0f172a","text":"#ffffff"}},"width":100} -->
|
||||
<div class="wp-block-button has-custom-width wp-block-button__width-100"><a class="wp-block-button__link has-text-color has-background" href="https://calendly.com/ktmckeand/60-minute-meeting" style="border-radius:999px;background-color:#0f172a;color:#ffffff;padding-top:10px;padding-right:18px;padding-bottom:10px;padding-left:18px;text-align:center">Book Now</a></div>
|
||||
<!-- /wp:button --></div>
|
||||
<!-- /wp:buttons --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"16px"},"spacing":{"padding":{"top":"24px","bottom":"24px","left":"24px","right":"24px"}},"color":{"background":"#f8fafc"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:16px;background-color:#f8fafc;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px;min-height:60px">Coaching</h3>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"24px","fontWeight":"700"}}} -->
|
||||
<p style="font-size:24px;font-weight:700">$500 <span style="font-size:16px;font-weight:400">/ hour</span></p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:paragraph -->
|
||||
<p>Minimum of one hour</p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:buttons -->
|
||||
<div class="wp-block-buttons"><!-- wp:button {"style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"10px","bottom":"10px","left":"18px","right":"18px"}},"color":{"background":"#0f172a","text":"#ffffff"}},"width":100} -->
|
||||
<div class="wp-block-button has-custom-width wp-block-button__width-100"><a class="wp-block-button__link has-text-color has-background" href="https://calendly.com/ktmckeand/60-minute-meeting" style="border-radius:999px;background-color:#0f172a;color:#ffffff;padding-top:10px;padding-right:18px;padding-bottom:10px;padding-left:18px;text-align:center">Book Now</a></div>
|
||||
<!-- /wp:button --></div>
|
||||
<!-- /wp:buttons --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"border":{"radius":"16px"},"spacing":{"padding":{"top":"24px","bottom":"24px","left":"24px","right":"24px"}},"color":{"background":"#e2e8f0"}}} -->
|
||||
<div class="wp-block-group has-background" style="min-height:100%;border-radius:16px;background-color:#e2e8f0;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px"><!-- wp:heading {"level":3,"style":{"typography":{"fontSize":"20px"}}} -->
|
||||
<h3 style="font-size:20px;min-height:60px">Coaching Package</h3>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"24px","fontWeight":"700"}}} -->
|
||||
<p style="font-size:24px;font-weight:700">$1,500 <span style="font-size:16px;font-weight:400">/ month</span></p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:buttons -->
|
||||
<div class="wp-block-buttons"><!-- wp:button {"style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"10px","bottom":"10px","left":"18px","right":"18px"}},"color":{"background":"#0f172a","text":"#ffffff"}},"width":100} -->
|
||||
<div class="wp-block-button has-custom-width wp-block-button__width-100"><a class="wp-block-button__link has-text-color has-background" href="https://calendly.com/ktmckeand/60-minute-meeting" style="border-radius:999px;background-color:#0f172a;color:#ffffff;padding-top:10px;padding-right:18px;padding-bottom:10px;padding-left:18px;text-align:center">Book Now</a></div>
|
||||
<!-- /wp:button --></div>
|
||||
<!-- /wp:buttons -->
|
||||
<!-- wp:paragraph {"align":"center"} -->
|
||||
<p class="has-text-align-center">Includes 4 hours of coaching</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
</div>
|
||||
<!-- /wp:columns -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"80px","left":"24px","right":"24px"},"blockGap":"16px"},"color":{"background":"#f1f5f9"}},"layout":{"type":"constrained","contentSize":"1100px"}} -->
|
||||
<div class="wp-block-group has-background" style="background-color:#f1f5f9;padding-top:60px;padding-right:24px;padding-bottom:80px;padding-left:24px"><!-- wp:heading {"level":2} -->
|
||||
<h2>Ready to explore coaching?</h2>
|
||||
<!-- /wp:heading -->
|
||||
<!-- wp:paragraph -->
|
||||
<p>Start with a 30‑minute fit call to assess alignment, goals, and the best coaching path.</p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- wp:buttons -->
|
||||
<div class="wp-block-buttons"><!-- wp:button {"style":{"border":{"radius":"999px"},"spacing":{"padding":{"top":"12px","bottom":"12px","left":"22px","right":"22px"}},"color":{"background":"#0f172a","text":"#ffffff"}}} -->
|
||||
<div class="wp-block-button"><a class="wp-block-button__link has-text-color has-background" href="https://calendly.com/ktmckeand/60-minute-meeting" style="border-radius:999px;background-color:#0f172a;color:#ffffff;padding-top:12px;padding-right:22px;padding-bottom:12px;padding-left:22px">Schedule an initial assessment</a></div>
|
||||
<!-- /wp:button --></div>
|
||||
<!-- /wp:buttons --></div>
|
||||
<!-- /wp:group -->
|
||||
45
update_home_layout.py
Normal file
45
update_home_layout.py
Normal file
@ -0,0 +1,45 @@
|
||||
import sys
|
||||
|
||||
with open('tmp_home_current.html', 'r', encoding='utf-8') as f:
|
||||
html = f.read()
|
||||
|
||||
img_block_str = """<!-- wp:group {"layout":{"type":"constrained","contentSize":"1100px"},"style":{"spacing":{"padding":{"top":"40px","bottom":"20px","left":"24px","right":"24px"}}}}} -->
|
||||
<div class="wp-block-group" style="padding-top:40px;padding-right:24px;padding-bottom:20px;padding-left:24px">
|
||||
<!-- wp:image {"align":"center"} -->
|
||||
<figure class="wp-block-image aligncenter"><img src="/wp-content/uploads/2026/03/pasted-20260312-192203-5bf6a392.png" alt="Kevin McKeand" style="border-radius:16px;max-width:100%;height:auto;"/></figure>
|
||||
<!-- /wp:image -->
|
||||
</div>
|
||||
<!-- /wp:group -->"""
|
||||
|
||||
if img_block_str in html:
|
||||
html = html.replace(img_block_str + '\n\n', '')
|
||||
html = html.replace(img_block_str + '\n', '')
|
||||
html = html.replace(img_block_str, '')
|
||||
else:
|
||||
print("Error: Could not find exact image block string.")
|
||||
sys.exit(1)
|
||||
|
||||
new_img_block_str = img_block_str.replace('<!-- wp:image {"align":"center"} -->', '<!-- wp:image {"align":"center","width":"275px","className":"is-resized"} -->')
|
||||
new_img_block_str = new_img_block_str.replace('<figure class="wp-block-image aligncenter">', '<figure class="wp-block-image aligncenter is-resized">')
|
||||
new_img_block_str = new_img_block_str.replace('max-width:100%', 'width:275px;max-width:100%')
|
||||
|
||||
# Add the new block at the very top of the html
|
||||
html = new_img_block_str + '\n\n' + html
|
||||
|
||||
old_saying = """<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"60px","left":"24px","right":"24px"},"blockGap":"24px"}},"layout":{"type":"constrained","contentSize":"1400px"}} -->
|
||||
<div class="wp-block-group" style="padding-top:60px;padding-right:24px;padding-bottom:60px;padding-left:24px"><!-- wp:heading {"level":2} -->
|
||||
<h2>What they're Saying</h2>"""
|
||||
|
||||
new_saying = """<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"0px","left":"24px","right":"24px"},"blockGap":"24px"}},"layout":{"type":"constrained","contentSize":"1400px"}} -->
|
||||
<div class="wp-block-group" style="padding-top:60px;padding-right:24px;padding-bottom:0px;padding-left:24px"><!-- wp:heading {"level":2} -->
|
||||
<h2>What they're Saying</h2>"""
|
||||
|
||||
if old_saying in html:
|
||||
html = html.replace(old_saying, new_saying)
|
||||
else:
|
||||
print("Error: Could not find exact saying block string.")
|
||||
sys.exit(1)
|
||||
|
||||
with open('tmp_home_current.html', 'w', encoding='utf-8') as f:
|
||||
f.write(html)
|
||||
print("Success.")
|
||||
45
update_home_layout2.py
Normal file
45
update_home_layout2.py
Normal file
@ -0,0 +1,45 @@
|
||||
import sys
|
||||
import re
|
||||
|
||||
with open('tmp_home_current.html', 'r', encoding='utf-8') as f:
|
||||
html = f.read()
|
||||
|
||||
# 1. Find and extract the image block
|
||||
img_regex = r'(<!-- wp:group {"layout":{"type":"constrained","contentSize":"1100px"},"style":{"spacing":{"padding":{"top":"40px","bottom":"20px","left":"24px","right":"24px"}}} -->\s*<div class="wp-block-group" style="padding-top:40px;padding-right:24px;padding-bottom:20px;padding-left:24px">{"align":"center"} -->\s*<figure class="wp-block-image aligncenter"><img src="/wp-content/uploads/2026/03/pasted-20260312-192203-5bf6a392\.png".*?</figure>\s*<!-- /wp:image -->\s*</div>\s*<!-- /wp:group -->)'
|
||||
|
||||
m = re.search(img_regex, html, re.DOTALL)
|
||||
if not m:
|
||||
print("Error: Could not find image block string.")
|
||||
sys.exit(1)
|
||||
|
||||
img_block_str = m.group(1)
|
||||
|
||||
# Remove the original image block
|
||||
html = html.replace(img_block_str + '\n\n', '')
|
||||
html = html.replace(img_block_str + '\n', '')
|
||||
html = html.replace(img_block_str, '')
|
||||
|
||||
# Modify the image block
|
||||
new_img_block_str = img_block_str.replace('<!-- wp:image {"align":"center"} -->', '<!-- wp:image {"align":"center","width":"275px","className":"is-resized"} -->')
|
||||
new_img_block_str = new_img_block_str.replace('<figure class="wp-block-image aligncenter">', '<figure class="wp-block-image aligncenter is-resized">')
|
||||
new_img_block_str = new_img_block_str.replace('max-width:100%', 'width:275px;max-width:100%')
|
||||
|
||||
# Add the modified image block at the very top of the html
|
||||
html = new_img_block_str + '\n\n' + html
|
||||
|
||||
# 2. Modify "What they're Saying" block padding
|
||||
old_saying_regex = r'(<!-- wp:group {"style":{"spacing":{"padding":{"top":"60px","bottom":"60px","left":"24px","right":"24px"},"blockGap":"24px"}},"layout":{"type":"constrained","contentSize":"1400px"}}} -->\s*<div class="wp-block-group" style="padding-top:60px;padding-right:24px;padding-bottom:)60px(;padding-left:24px"><!-- wp:heading {"level":2} -->\s*<h2>What they\'re Saying</h2>)'
|
||||
|
||||
m2 = re.search(old_saying_regex, html, re.DOTALL)
|
||||
if not m2:
|
||||
print("Error: Could not find exact saying block string.")
|
||||
sys.exit(1)
|
||||
|
||||
# Replace the "bottom":"60px" and padding-bottom:60px with 0px
|
||||
new_saying = m2.group(0).replace('"bottom":"60px"', '"bottom":"0px"').replace('padding-bottom:60px', 'padding-bottom:0px')
|
||||
|
||||
html = html.replace(m2.group(0), new_saying)
|
||||
|
||||
with open('tmp_home_current.html', 'w', encoding='utf-8') as f:
|
||||
f.write(html)
|
||||
print("Success.")
|
||||
55
update_home_layout3.py
Normal file
55
update_home_layout3.py
Normal file
@ -0,0 +1,55 @@
|
||||
import sys
|
||||
|
||||
with open('tmp_home_current.html', 'r', encoding='utf-8') as f:
|
||||
html = f.read()
|
||||
|
||||
img_start = html.find('<!-- wp:group {"layout":{"type":"constrained","contentSize":"1100px"},"style":{"spacing":{"padding":{"top":"40px","bottom":"20px","left":"24px","right":"24px"}}}} -->')
|
||||
if img_start == -1:
|
||||
print("Could not find image start")
|
||||
sys.exit(1)
|
||||
|
||||
img_end_str = '<!-- /wp:group -->'
|
||||
img_end = html.find(img_end_str, img_start)
|
||||
if img_end == -1:
|
||||
print("Could not find image end")
|
||||
sys.exit(1)
|
||||
|
||||
img_end += len(img_end_str)
|
||||
|
||||
img_block = html[img_start:img_end]
|
||||
|
||||
# remove it from html
|
||||
html = html[:img_start] + html[img_end:]
|
||||
|
||||
# strip empty lines where the block was
|
||||
html = '\n'.join([line for line in html.split('\n') if line.strip() != '' or '<' in line])
|
||||
|
||||
# modify img_block
|
||||
new_img_block = img_block.replace('<!-- wp:image {"align":"center"} -->', '<!-- wp:image {"align":"center","width":"275px","className":"is-resized"} -->')
|
||||
new_img_block = new_img_block.replace('<figure class="wp-block-image aligncenter">', '<figure class="wp-block-image aligncenter is-resized">')
|
||||
new_img_block = new_img_block.replace('max-width:100%', 'width:275px;max-width:100%')
|
||||
|
||||
# Add it at the top
|
||||
html = new_img_block + '\n\n' + html
|
||||
|
||||
# Now for the saying block
|
||||
saying_marker = '<h2>What they\'re Saying</h2>'
|
||||
saying_idx = html.find(saying_marker)
|
||||
|
||||
if saying_idx == -1:
|
||||
print("Could not find saying marker")
|
||||
sys.exit(1)
|
||||
|
||||
saying_start = html.rfind('<!-- wp:group', 0, saying_idx)
|
||||
saying_end = html.find('<!-- wp:heading', saying_start)
|
||||
|
||||
saying_block_start = html[saying_start:saying_end]
|
||||
|
||||
new_saying_block_start = saying_block_start.replace('"bottom":"60px"', '"bottom":"0px"').replace('padding-bottom:60px', 'padding-bottom:0px')
|
||||
|
||||
html = html[:saying_start] + new_saying_block_start + html[saying_end:]
|
||||
|
||||
with open('tmp_home_current.html', 'w', encoding='utf-8') as f:
|
||||
f.write(html)
|
||||
|
||||
print("Success")
|
||||
Loading…
x
Reference in New Issue
Block a user