Full Page

Daniel Okafor

Mathematics (GCSE, A-Level, IB), Further Mathematics, Physics (GCSE, A-Level), University Admissions (Oxbridge, Imperial)

I tutor maths and physics because I remember what it felt like to not understand — and what it felt like when it finally clicked. My job is to get you to that click as efficiently as possible. I studied Mathematics at Cambridge and taught for four years at a London sixth form before going independent. Most of my students come by referral.

Qualifications

BA & MMath — University of Cambridge, PGCE — UCL Institute of Education, 4 years classroom teaching experience, 95% of A-Level students achieve A or A*

Rates

1hr session — £60, 5-session package — £270, Oxbridge prep (3-session intensive) — £200, Online via Zoom or in-person (London zones 1–3)

Tutoring Service

Personal tutor page with subjects, approach, and booking.

by DesignGenerate 0 stars 1 renders 0 forks

Schema

FieldType
tutor_name string
subjects list<string>
about text
qualifications list<string>
rates list<string>
email email
booking_url link

Apply Values

POST JSON to the API endpoint:

POST /api/templates/tutoring-service/apply
Content-Type: application/json

{
  "tutor_name": "Daniel Okafor",
  "subjects": [
    "Mathematics (GCSE, A-Level, IB)",
    "Further Mathematics",
    "Physics (GCSE, A-Level)",
    "University Admissions (Oxbridge, Imperial)"
  ],
  "about": "I tutor maths and physics because I remember what it felt like to not understand — and what it felt like when it finally clicked. My job is to get you to that click as efficiently as possible.\n\nI studied Mathematics at Cambridge and taught for four years at a London sixth form before going independent. Most of my students come by referral.",
  "qualifications": [
    "BA & MMath — University of Cambridge",
    "PGCE — UCL Institute of Education",
    "4 years classroom teaching experience",
    "95% of A-Level students achieve A or A*"
  ],
  "rates": [
    "1hr session — £60",
    "5-session package — £270",
    "Oxbridge prep (3-session intensive) — £200",
    "Online via Zoom or in-person (London zones 1–3)"
  ],
  "email": "[email protected]",
  "booking_url": "https://example.com/book"
}

AI Prompt

Copy this prompt to generate a compatible template with any LLM:

You are an expert frontend designer.
Create a beautiful, modern HTML template for "Tutoring Service" that strictly follows the constraints and schema below.

## Constraints
- Style everything using inline style="" attributes only (no external CSS, no <link>, no <style> tags)
- Do NOT use: <script>, <iframe>, <form>, <input>, <textarea>, <button>, <select>, <object>, <embed>, <details>, <dialog>
- Place data placeholders using this syntax: {{tutor_name:string}}, {{subjects:list<string>}}, {{about:text}}
- The template must be a single HTML fragment (no <html>, <head>, or <body> tags)
- Use system fonts: font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif (or Georgia, serif for editorial)

## JSON Schema
```json
{
  "tutor_name": "string",
  "subjects": [
    "string"
  ],
  "about": "text",
  "qualifications": [
    "string"
  ],
  "rates": [
    "string"
  ],
  "email": "email",
  "booking_url": "link"
}
```

## Placeholder Syntax
Each data point uses `{{key:type}}` — for example:
- `{{tutor_name:string}}` → string
- `{{subjects:list<string>}}` → list<string>
- `{{about:text}}` → text
- `{{qualifications:list<string>}}` → list<string>
- `{{rates:list<string>}}` → list<string>
- `{{email:email}}` → email
- `{{booking_url:link}}` → link

Output ONLY the HTML code block. No explanation.