docs: add team-coaching
This commit is contained in:
parent
7c3c47c462
commit
bc73c48458
123
src/pages/team-coaching.mdx
Normal file
123
src/pages/team-coaching.mdx
Normal file
|
@ -0,0 +1,123 @@
|
||||||
|
---
|
||||||
|
layout: ~/layouts/PageLayout.astro
|
||||||
|
title: Team Coaching
|
||||||
|
---
|
||||||
|
|
||||||
|
import AboutMe from "~/components/AboutMe.astro";
|
||||||
|
import Button from "~/components/Button.astro";
|
||||||
|
import Testimonials from "~/components/Testimonials.astro";
|
||||||
|
import priceFormatter from "~/price-formatter";
|
||||||
|
import { numberOfYears } from "~/utils";
|
||||||
|
|
||||||
|
export const formUrl = "https://forms.gle/zd3Lnwe2J1sF13qJ7";
|
||||||
|
export const price = 10000;
|
||||||
|
|
||||||
|
<div class="space-y-12">
|
||||||
|
<div>
|
||||||
|
{/*Pain*/}
|
||||||
|
|
||||||
|
Do you need an experienced Software Developer or Drupal expert to upskill your in-house team? Are they new to Drupal or want to make better use of best practices, such as automated testing and test-driven development?
|
||||||
|
|
||||||
|
Do you want to gain exposure by contributing to open-source software, like Drupal, but don't know where to start?
|
||||||
|
|
||||||
|
{/* Dream */}
|
||||||
|
|
||||||
|
{/* Fix */}
|
||||||
|
|
||||||
|
I offer team coaching on an ongoing monthly basis. You can sign up for as long as you need, and pause or cancel at any time.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
## What do I get?
|
||||||
|
|
||||||
|
- Unlimited, 24/7 access to me via email or Slack, with responses within one business day.
|
||||||
|
- Regular 1-on-1 check-in calls and pair/mob programming sessions.
|
||||||
|
- Reviews and feedback of relevant code, flowcharts, technical design documents, etc.
|
||||||
|
|
||||||
|
## What can I help with?
|
||||||
|
|
||||||
|
- Developing custom Drupal modules and themes.
|
||||||
|
- Automated testing and test-driven development.
|
||||||
|
- CSS and front-end development.
|
||||||
|
- Implementing and using component libraries, such as Fractal.
|
||||||
|
- Continuous integration, delivery and deployment.
|
||||||
|
- Local environment and CI pipeline setup.
|
||||||
|
- Infrastructure automation, using tools like Terraform and Pulumi.
|
||||||
|
- Automating and simplifying repetitive or complex tasks.
|
||||||
|
- Contributing to open-source projects, such as Drupal.
|
||||||
|
</section>
|
||||||
|
|
||||||
|
{/* 1st call to action */}
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2 class="sr-only">Apply now</h2>
|
||||||
|
|
||||||
|
<Button href={formUrl} position="centre" text={"Apply now"} />
|
||||||
|
</section>
|
||||||
|
|
||||||
|
{/* Social proof */}
|
||||||
|
|
||||||
|
{/* Overcome objections */}
|
||||||
|
|
||||||
|
<section>
|
||||||
|
## How does it work?
|
||||||
|
|
||||||
|
- The cost of team coaching is {priceFormatter.format(price)} per month, paid upfront.
|
||||||
|
- You apply by clicking on the button below and submitting the application form, telling me about your team and what you want to achieve.
|
||||||
|
- I'll review your application, usually within one working day.
|
||||||
|
- If successful, you make your first payment and book your onboarding call where we can define some key objectives and metrics.
|
||||||
|
|
||||||
|
<Button href={formUrl} position="centre" text={"Apply now"} />
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<Testimonials
|
||||||
|
names={[
|
||||||
|
"mike-karthauser",
|
||||||
|
"tawny-bartlett",
|
||||||
|
"joe-howell",
|
||||||
|
"scott-euser",
|
||||||
|
"mick-felton",
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
|
||||||
|
{/* Uniqueness */}
|
||||||
|
|
||||||
|
<section>
|
||||||
|
## Who am I?
|
||||||
|
|
||||||
|
- I'm an Acquia-certified Drupal expert with over {numberOfYears} years of professional development experience.
|
||||||
|
- I'm a former Drupal Association employee who was responsible for improving and maintaining Drupal.org.
|
||||||
|
- I'm a Drupal core contributor and maintain numerous Drupal projects, including the Override Node Options module, which is used on over 38,000 websites.
|
||||||
|
- I'm a multiple-time DrupalCon speaker who regularly presents talks and workshops at conferences and meetups.
|
||||||
|
- I have experience working in in-house teams, such as Transport for Wales and the Drupal Association.
|
||||||
|
- I have experience working for and with software development agencies.
|
||||||
|
</section>
|
||||||
|
|
||||||
|
{/* 2nd CTA */}
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<Button
|
||||||
|
href={formUrl}
|
||||||
|
position="centre"
|
||||||
|
text={"Apply now for team coaching"}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Testimonials
|
||||||
|
names={["duncan-davidson", "adam-cuddihy", "alan-hatch", "anonymous"]}
|
||||||
|
title={"More that others have said"}
|
||||||
|
/>
|
||||||
|
|
||||||
|
{/* Urgency */}
|
||||||
|
|
||||||
|
<section>
|
||||||
|
## Availability is limited
|
||||||
|
|
||||||
|
I'm only available for a few team coaching engagements per year.
|
||||||
|
|
||||||
|
Scheduling is first come, first served, so the sooner you book your time slot, the sooner you will have the answers you need to upskill your team.
|
||||||
|
|
||||||
|
If you have any questions, feel free to send me an email at oliver@oliverdavies.uk.
|
||||||
|
|
||||||
|
</section>
|
||||||
|
</div>
|
|
@ -1,11 +1,14 @@
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"title": "Diagnosis",
|
"title": "Development team coaching",
|
||||||
"description": "An in-depth investigation into a single issue where I'll provide a report with my findings and advice on the next steps. Once you've purchased, you can book a Zoom call with me to discuss what you want me to investigate.",
|
"description": "Do you want to upskill your in-house team or have someone provide oversight and guidance as they deliver a project? Does your company want to learn to contribute to open-source software? Get unlimited 1-on-1 private Slack access to me and regular check-in calls to ensure things are on track.",
|
||||||
"price": 2500,
|
"perMonth": true,
|
||||||
|
"isFrom": true,
|
||||||
|
"isLimited": true,
|
||||||
|
"price": 10000,
|
||||||
"link": {
|
"link": {
|
||||||
"text": "Book now",
|
"text": "Apply now",
|
||||||
"href": "https://buy.stripe.com/00gbJs84G2jg8Vy9AJ"
|
"href": "/team-coaching"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -18,15 +21,12 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"title": "Development team coaching",
|
"title": "Diagnosis",
|
||||||
"description": "Do you want to upskill your in-house team or have someone provide oversight and guidance as they deliver a project? Does your company want to learn to contribute to open-source software? Get unlimited 1-on-1 private Slack access to me and regular check-in calls to ensure things are on track.",
|
"description": "An in-depth investigation into a single issue where I'll provide a report with my findings and advice on the next steps. Once you've purchased, you can book a Zoom call with me to discuss what you want me to investigate.",
|
||||||
"perMonth": true,
|
"price": 2500,
|
||||||
"isFrom": true,
|
|
||||||
"isLimited": true,
|
|
||||||
"price": 5000,
|
|
||||||
"link": {
|
"link": {
|
||||||
"text": "Apply now",
|
"text": "Book now",
|
||||||
"href": "https://forms.gle/HGEC3uqkUSqPsoK79"
|
"href": "https://buy.stripe.com/00gbJs84G2jg8Vy9AJ"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue