# TEMPLATE.md: Medical practice

You are an AI developer building a complete website for my client. Template: **Medical practice**. Credibility first: doctors, services and exams, credentials, serious visual identity, booking.

## 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-02 @ludusvibe/services-02 @ludusvibe/stats-04 @ludusvibe/team-01 @ludusvibe/about-02 @ludusvibe/testimonials-01 @ludusvibe/booking-01 @ludusvibe/faq-03 @ludusvibe/contact-01 @ludusvibe/footer-04
```

### 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-02`  (Hero 02: Blueprint grid with media frame)
   Great for: Consulting, B2B services, agencies and studios with one strong team or office photo.
3. `services-02`  (Services 02: Practice Cards)
   Great for: Law firms, accountants, medical practices and professional services.
4. `stats-04`  (Stats 04: Credential Cards)
   Great for: Law, medicine, finance: trust-driven practices and firms.
5. `team-01`  (Team 01: People Grid)
   Great for: Agencies, firms and clinics presenting the whole team.
6. `about-02`  (About 02: Firm Story)
   Great for: Law firms, agencies and family businesses with history to tell.
7. `testimonials-01`  (Testimonials 01: Bento Quotes)
   Great for: Services, SaaS and local businesses with several strong client quotes.
8. `booking-01`  (Booking 01: Slot Picker)
   Great for: Salons, clinics, trainers: anyone booking time slots.
9. `faq-03`  (FAQ 03: Sticky Split)
   Great for: Practices with sensitive questions: therapy, medicine, law.
10. `contact-01`  (Contact 01: Form & Map)
   Great for: Any business with an office or premises to visit.
11. `footer-04`  (Footer 04: Counsel)
   Great for: Law firms, finance and consultancies needing a legal note.

In `app/page.tsx`:

```tsx
import { Navbar03 } from "@/components/sections/navbar-03"
import { Hero02 } from "@/components/sections/hero-02"
import { Services02 } from "@/components/sections/services-02"
import { Stats04 } from "@/components/sections/stats-04"
import { Team01 } from "@/components/sections/team-01"
import { About02 } from "@/components/sections/about-02"
import { Testimonials01 } from "@/components/sections/testimonials-01"
import { Booking01 } from "@/components/sections/booking-01"
import { Faq03 } from "@/components/sections/faq-03"
import { Contact01 } from "@/components/sections/contact-01"
import { Footer04 } from "@/components/sections/footer-04"

export default function Page() {
  return (
    <>
      <Navbar03 />
      <Hero02 />
      <Services02 />
      <Stats04 />
      <Team01 />
      <About02 />
      <Testimonials01 />
      <Booking01 />
      <Faq03 />
      <Contact01 />
      <Footer04 />
    </>
  )
}
```

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)
