diff --git a/.htaccess b/.htaccess index e2bbc23..0003e00 100644 --- a/.htaccess +++ b/.htaccess @@ -1,18 +1,6 @@ -DirectoryIndex index.php index.html -Options -Indexes -Options -MultiViews - RewriteEngine On - -# 0) Serve existing files/directories as-is -RewriteCond %{REQUEST_FILENAME} -f [OR] -RewriteCond %{REQUEST_FILENAME} -d -RewriteRule ^ - [L] - -# 1) Internal map: /page or /page/ -> /page.php (if such PHP file exists) -RewriteCond %{REQUEST_FILENAME}.php -f -RewriteRule ^(.+?)/?$ $1.php [L] - -# 2) Optional: strip trailing slash for non-directories (keeps .php links working) +RewriteBase / +RewriteRule ^index\.php$ - [L] +RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d -RewriteRule ^(.+)/$ $1 [R=301,L] +RewriteRule . /index.php [L] \ No newline at end of file diff --git a/current_home_content.html b/current_home_content.html new file mode 100644 index 0000000..54e4353 --- /dev/null +++ b/current_home_content.html @@ -0,0 +1,232 @@ + +
Coaching for C-Level Executives who want to breakthrough and achieve the impossible in their business, navigating their organizations with clarity, reduced complexity and with more purpose.
+ + + + + + + +Purpose: enable others to achieve their potential.
+Credentials
+ + + +Confidential. Insightful. Practical.
+Identify the real challenge beneath the symptom, and name the narrative shaping your decisions.
+Design small experiments to expand capability, build confidence, and improve leadership presence.
+Apply new behaviors in your real-world environment and reflect on the results.
+Coaching is a partnership designed for growth — outcomes depend on commitment and context.
+“Clear, grounding, and strategic. I left each session with a concrete action and a deeper sense of purpose.”
+ + + +— CEO and B2B SaaS Founder
+“Helped me reframe my leadership narrative and show up with more authority.”
+ + + +— Founder and CEO
+Free
+ + + +30 minutes
+ + + + +$550 / hour
+ + + +Minimum of one hour
+ + + + +$1,500 / month
+ + + + + + + +Includes 4 hours of coaching
+Start with a 30‑minute fit call to assess alignment, goals, and the best coaching path.
+ + + + +Coaching for C-Level Executives who want to breakthrough and achieve the impossible in their business, navigating their organizations with clarity, reduced complexity and with more purpose.
+ + + + + + + +Purpose: enable others to achieve their potential.
+Credentials
+ + + +Confidential. Insightful. Practical.
+Identify the real challenge beneath the symptom, and name the narrative shaping your decisions.
+Design small experiments to expand capability, build confidence, and improve leadership presence.
+Apply new behaviors in your real-world environment and reflect on the results.
+Coaching is a partnership designed for growth — outcomes depend on commitment and context.
+“Clear, grounding, and strategic. I left each session with a concrete action and a deeper sense of purpose.”
+ + + +— CEO and B2B SaaS Founder
+“Helped me reframe my leadership narrative and show up with more authority.”
+ + + +— Founder and CEO
+Free
+ + + +30 minutes
+ + + + +$550 / hour
+ + + +Minimum of one hour
+ + + + +$1,500 / month
+ + + + + + + +Includes 4 hours of coaching
+Start with a 30‑minute fit call to assess alignment, goals, and the best coaching path.
+ + + + +FREE
+FREE - 30 minutes
-$150
+$550 an hour - minimum of one hour
-$650 / month
+$1,500 a month - includes 4 hours of coaching
-Coaching for C-Level Executives who want to breakthrough and achieve the impossible in their business, navigating their organizations with clarity, reduced complexity and with more purpose.
+ + + + + + + +Purpose: enable others to achieve their potential.
+Credentials
+ + + +Confidential. Insightful. Practical.
+Identify the real challenge beneath the symptom, and name the narrative shaping your decisions.
+Design small experiments to expand capability, build confidence, and improve leadership presence.
+Apply new behaviors in your real-world environment and reflect on the results.
+Coaching is a partnership designed for growth — outcomes depend on commitment and context.
+“Clear, grounding, and strategic. I left each session with a concrete action and a deeper sense of purpose.”
+ + + +— CEO and B2B SaaS Founder
+“Helped me reframe my leadership narrative and show up with more authority.”
+ + + +— Founder and CEO
+Free
+ + + +30 minutes
+ + + + +$550 / hour
+ + + +Minimum of one hour
+ + + + +$1,500 / month
+ + + +Includes 4 hours of coaching
+ + + + +Start with a 30‑minute fit call to assess alignment, goals, and the best coaching path.
+ + + + +Purpose: enable others to achieve their potential.
""" + +new_str_1 = """ +Purpose: enable others to achieve their potential.
""" + +content = content.replace(old_str_1, new_str_1) + +# Replace second secondary text color +old_str_2 = """ +Confidential. Insightful. Practical.
""" + +new_str_2 = """ +Confidential. Insightful. Practical.
""" + +content = content.replace(old_str_2, new_str_2) + +# Replace third secondary text color +old_str_3 = """ +Coaching is a partnership designed for growth — outcomes depend on commitment and context.
""" + +new_str_3 = """ +Coaching is a partnership designed for growth — outcomes depend on commitment and context.
""" + +content = content.replace(old_str_3, new_str_3) + +# Since Credentials background is `#0f172a`, making its text default (dark) and secondary `#475569` might be unreadable! +# The user asked: "Change the background color of the boxes that are now black to Transformative Teal (#316263)." +# Both the main box and the Credentials box are dark, but Credentials box is `#0f172a`. +# Let's change the Credentials box background to Teal as well? Or just make it inherit the background? +# It's better to just leave the Credentials box alone, or wait, if the main text is dark, the main box is Teal. +# Is `#316263` dark or light? It's rgb(49, 98, 99). This is a very dark teal. +# If the background is dark teal, and the text is default dark gray/black (like in "What they're saying"), it will be VERY HARD to read! +# The user specifically said: "That means the text should all be the same color as the text in the 'what they're saying' section." +# So I must make the text dark, even if it might be hard to read on dark teal. Or maybe Teal #316263 is considered a lighter color in their mind? +# Wait, "What they're saying" section has `#f8fafc` background (very light gray), so its text is dark. +# So yes, I am correctly setting the text to be the same color (default dark). + +with open('tmp_home.html', 'w') as f: + f.write(content) diff --git a/update_cred.py b/update_cred.py new file mode 100644 index 0000000..bf44f0d --- /dev/null +++ b/update_cred.py @@ -0,0 +1,18 @@ +import sys + +with open('tmp_home.html', 'r') as f: + content = f.read() + +# Replace Credentials background color +old_str_4 = """ +Includes 4 hours of coaching
+ + + + +""" + +new_pricing_block = """ + + + + +Includes 4 hours of coaching
+""" + +content = content.replace(old_pricing_block, new_pricing_block) + +# Also check Credentials title text, make it white +content = content.replace( + '\nCredentials
', + '\nCredentials
' +) + + +with open('home_content.html', 'w') as f: + f.write(content)