# TEMPLATE.md: Educator & courses

You are an AI developer building a complete website for my client. Template: **Educator & courses**. Language schools and kids programs: curriculum, class schedule, group vs individual, enrollment.

## What you are building

A Next.js (App Router) site assembled from production-ready LudusVibe UI sections. Sections install through the shadcn registry and automatically follow the project's brand tokens.

## Steps

### 1. Project and registry

If the project does not exist yet: `npx create-next-app@latest my-site --ts --tailwind --app`, then `npx shadcn@latest init`.
Add the registry to `components.json`:

```json
"registries": {
  "@ludusvibe": "https://ui.ludusvibe.com/r/{name}.json"
}
```

### 2. Install the template's sections

```bash
npx shadcn@latest add @ludusvibe/navbar-03 @ludusvibe/hero-07 @ludusvibe/services-02 @ludusvibe/services-04 @ludusvibe/stats-01 @ludusvibe/pricing-02 @ludusvibe/testimonials-01 @ludusvibe/booking-02 @ludusvibe/faq-01 @ludusvibe/contact-01 @ludusvibe/footer-03
```

### 3. Assemble the page in this order

1. `navbar-03`  (Navbar 03: Service Topbar)
   Great for: Local services: salons, clinics, workshops, craftsmen, anyone reached by phone.
2. `hero-07`  (Hero 07: Centered with program tabs and panel)
   Great for: Schools, kids' programs, courses and gyms presenting multiple programs.
3. `services-02`  (Services 02: Practice Cards)
   Great for: Law firms, accountants, medical practices and professional services.
4. `services-04`  (Services 04: Class Schedule)
   Great for: Gyms, yoga and dance studios, language schools and group classes.
5. `stats-01`  (Stats 01: Stat Row)
   Great for: Any business with numbers to show: clients served, years, projects, ratings.
6. `pricing-02`  (Pricing 02: Billing Toggle)
   Great for: SaaS and memberships billed monthly or yearly.
7. `testimonials-01`  (Testimonials 01: Bento Quotes)
   Great for: Services, SaaS and local businesses with several strong client quotes.
8. `booking-02`  (Booking 02: Consultation Intake)
   Great for: Consultants, therapists and B2B intro calls.
9. `faq-01`  (FAQ 01: Accordion)
   Great for: Any site: services, shops, SaaS; answers objections before the contact step.
10. `contact-01`  (Contact 01: Form & Map)
   Great for: Any business with an office or premises to visit.
11. `footer-03`  (Footer 03: Service Grid)
   Great for: Local businesses where hours and contact matter: salons, clinics, restaurants.

In `app/page.tsx`:

```tsx
import { Navbar03 } from "@/components/sections/navbar-03"
import { Hero07 } from "@/components/sections/hero-07"
import { Services02 } from "@/components/sections/services-02"
import { Services04 } from "@/components/sections/services-04"
import { Stats01 } from "@/components/sections/stats-01"
import { Pricing02 } from "@/components/sections/pricing-02"
import { Testimonials01 } from "@/components/sections/testimonials-01"
import { Booking02 } from "@/components/sections/booking-02"
import { Faq01 } from "@/components/sections/faq-01"
import { Contact01 } from "@/components/sections/contact-01"
import { Footer03 } from "@/components/sections/footer-03"

export default function Page() {
  return (
    <>
      <Navbar03 />
      <Hero07 />
      <Services02 />
      <Services04 />
      <Stats01 />
      <Pricing02 />
      <Testimonials01 />
      <Booking02 />
      <Faq01 />
      <Contact01 />
      <Footer03 />
    </>
  )
}
```

Pass `as="h1"` to the first hero section.

### 4. Branding (ask the client before choosing)

All colors live as CSS tokens in `app/globals.css`. Change ONLY tokens, never colors inside components:
- `--primary` and `--primary-foreground`: the brand color (in both themes, :root and .dark)
- `--chart-1` through `--chart-5`: accent colors for charts and visual elements
- Font: swap the font in `app/layout.tsx` (next/font)

### 5. Content

Every section takes its content through props (headings, copy, items, images, CTAs). Replace the default content with the client's real data: names, services, prices, photos, contact, social links.

Copy rules:
- Sales-driven and concrete: benefits first, numbers where they exist
- NEVER use the em dash (—): use a colon, a comma, or restructure the sentence
- Images: replace the Unsplash defaults with the client's photography wherever available

### 6. Verify

- The site works in light and dark themes
- Mobile at 375px with no horizontal scroll
- Every link and CTA points to a real destination (phone, Instagram, form)
