# TEMPLATE.md: Fitness & training

You are an AI developer building a complete website for my client. Template: **Fitness & training**. Training programs, client transformations, package prices, online and in-person options.

## 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-02 @ludusvibe/hero-09 @ludusvibe/services-03 @ludusvibe/gallery-04 @ludusvibe/pricing-04 @ludusvibe/compare-02 @ludusvibe/testimonials-04 @ludusvibe/booking-01 @ludusvibe/cta-02 @ludusvibe/footer-02
```

### 3. Assemble the page in this order

1. `navbar-02`  (Navbar 02: Classic Top Bar)
   Great for: Business sites, agencies and B2B services: a familiar layout that fits almost any industry.
2. `hero-09`  (Hero 09: Fullscreen photo with collection cards)
   Great for: Fitness, sports and lifestyle brands pointing to two key programs.
3. `services-03`  (Services 03: Program Rows)
   Great for: Coaches, consultants and trainers selling outcome-based programs.
4. `gallery-04`  (Gallery 04: Before & After Pairs)
   Great for: Salons, fitness, renovations, dental: any visible transformation.
5. `pricing-04`  (Pricing 04: Session Rates)
   Great for: Psychologists, coaches, physiotherapists and 1-on-1 practitioners.
6. `compare-02`  (Compare 02: Plan Matrix)
   Great for: SaaS and subscriptions with feature differences across plans.
7. `testimonials-04`  (Testimonials 04: Case Results)
   Great for: Consultants, lawyers and agencies selling hard outcomes.
8. `booking-01`  (Booking 01: Slot Picker)
   Great for: Salons, clinics, trainers: anyone booking time slots.
9. `cta-02`  (CTA 02: Newsletter Band)
   Great for: Blogs, creators, media and shops building an email list.
10. `footer-02`  (Footer 02: Minimal Watermark)
   Great for: Portfolios, studios and brands with a strong wordmark.

In `app/page.tsx`:

```tsx
import { Navbar02 } from "@/components/sections/navbar-02"
import { Hero09 } from "@/components/sections/hero-09"
import { Services03 } from "@/components/sections/services-03"
import { Gallery04 } from "@/components/sections/gallery-04"
import { Pricing04 } from "@/components/sections/pricing-04"
import { Compare02 } from "@/components/sections/compare-02"
import { Testimonials04 } from "@/components/sections/testimonials-04"
import { Booking01 } from "@/components/sections/booking-01"
import { Cta02 } from "@/components/sections/cta-02"
import { Footer02 } from "@/components/sections/footer-02"

export default function Page() {
  return (
    <>
      <Navbar02 />
      <Hero09 />
      <Services03 />
      <Gallery04 />
      <Pricing04 />
      <Compare02 />
      <Testimonials04 />
      <Booking01 />
      <Cta02 />
      <Footer02 />
    </>
  )
}
```

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)
