# TEMPLATE.md: Salon & local service

You are an AI developer building a complete website for my client. Template: **Salon & local service**. Beauty and local services: price list, before/after work, team, location with map, working hours, 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-13 @ludusvibe/services-01 @ludusvibe/gallery-04 @ludusvibe/team-02 @ludusvibe/testimonials-02 @ludusvibe/booking-01 @ludusvibe/contact-02 @ludusvibe/cta-08 @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-13`  (Hero 13: Fullscreen photo with glass stats)
   Great for: Salons, studios and premium local services with editorial photography.
3. `services-01`  (Services 01: Price Menu)
   Great for: Salons, barbershops, spas, massage and beauty studios.
4. `gallery-04`  (Gallery 04: Before & After Pairs)
   Great for: Salons, fitness, renovations, dental: any visible transformation.
5. `team-02`  (Team 02: Member Spotlight)
   Great for: Salons, studios and practices led by one known name.
6. `testimonials-02`  (Testimonials 02: Marquee Walls)
   Great for: Products and communities with many short reviews: apps, courses, shops.
7. `booking-01`  (Booking 01: Slot Picker)
   Great for: Salons, clinics, trainers: anyone booking time slots.
8. `contact-02`  (Contact 02: Visit Us)
   Great for: Cafes, shops, showrooms and walk-in businesses.
9. `cta-08`  (CTA 08: Instagram Follow)
   Great for: Creators, salons, food and visual brands living on Instagram.
10. `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 { Hero13 } from "@/components/sections/hero-13"
import { Services01 } from "@/components/sections/services-01"
import { Gallery04 } from "@/components/sections/gallery-04"
import { Team02 } from "@/components/sections/team-02"
import { Testimonials02 } from "@/components/sections/testimonials-02"
import { Booking01 } from "@/components/sections/booking-01"
import { Contact02 } from "@/components/sections/contact-02"
import { Cta08 } from "@/components/sections/cta-08"
import { Footer03 } from "@/components/sections/footer-03"

export default function Page() {
  return (
    <>
      <Navbar03 />
      <Hero13 />
      <Services01 />
      <Gallery04 />
      <Team02 />
      <Testimonials02 />
      <Booking01 />
      <Contact02 />
      <Cta08 />
      <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)
