Live Coaching & Mentorship

Level Up With
AI & TikTok Mastery

1-on-1 mentorship, AI automation coaching, and group sessions. Real skills. Real income. Booked in 60 seconds.

3
Session Types
1:1
Personal Coaching
AI
Automation Focus
Choose Your Session
Pick What You Need
1-on-1 Mentorship
🎵
Make Money on TikTok
Personal 1-to-1 mentorship on building income through TikTok — content strategy, monetisation, and growth hacks that actually work.
  • TikTok monetisation strategies
  • Viral content frameworks
  • Brand deals & affiliate income
  • Growth system setup
1-on-1 Coaching
🤖
AI Automation — 1-on-1
Private coaching session on AI automation — build systems that save you hours, generate leads, and scale your business on autopilot.
  • Custom AI workflow design
  • Automation tools & no-code stacks
  • Lead gen & outreach automation
  • Your specific business use case
Group Session
Group AI Automation
Join a live group session and learn AI automation alongside others. Collaborate, ask questions, and leave with a working system.
  • Live group coaching format
  • Hands-on automation build
  • Q&A and community support
  • Recordings included
1
Date & Time
2
Your Details
3
Payment
Select a Date
MoTuWeThFrSaSu
Available Times
← Select a date first
Booking Summary
Select a date and time to continue
Selected Session

You're Booked! 🎉

Your session is confirmed. A confirmation email has been sent — check your inbox. Looking forward to working with you.

Dashboard
Admin Overview
Today's Bookings
0
This Month
0
Revenue (Month)
£0
Total Bookings
0
⚡ Integration Setup

Keys are saved locally in your browser. Configure each service to go live.

💳 Stripe (Payments)
📧 EmailJS (Auto-emails)
📊 Google Sheets

Deploy the Apps Script below as a Web App and paste the URL here.

📱 Twilio (Morning SMS)
All Bookings
Ref Client Session Date & Time Amount Status
📋 Setup Guide
💳 Stripe
  1. Create account at stripe.com
  2. Developers → API Keys
  3. Copy Publishable Key above
  4. For real charges, add Secret Key to your backend
📧 EmailJS
  1. Sign up at emailjs.com (free: 200/mo)
  2. Add Email Service (Gmail etc.)
  3. Create Template — use variables:
    {{name}} {{session}} {{date}} {{time}} {{price}} {{ref}}
  4. Paste Service ID, Template ID, Public Key above
📊 Google Sheets
  1. Create a new Google Sheet
  2. Extensions → Apps Script
  3. Paste the script from below
  4. Deploy → Web App → Anyone → Copy URL above
  5. Every booking auto-appears as a new row
📱 Twilio SMS
  1. Sign up at twilio.com
  2. Get a phone number (~£1/mo)
  3. Paste SID, Token, numbers above
  4. For automatic 8am daily SMS: set up a free cron job at cron-job.org pointing to a small backend endpoint — I can build this for you
Google Apps Script — Paste this into your Sheet
function doPost(e) { var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet(); var data = JSON.parse(e.postData.contents); sheet.appendRow([ data.ref, data.clientName, data.email, data.phone, data.session, data.date, data.time, '£' + data.price, data.status, new Date().toLocaleString('en-GB') ]); return ContentService .createTextOutput(JSON.stringify({ result: 'ok' })) .setMimeType(ContentService.MimeType.JSON); } // Headers row — run once manually after deployment: function setupHeaders() { var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet(); sheet.getRange(1,1,1,10).setValues([[ 'Ref','Name','Email','Phone', 'Session','Date','Time','Price','Status','Created' ]]); }