# Slate

Canonical place for internal slate dossiers.

## Structure

Each slate item lives at:

- `content/slate/<slug>/` (internal dossier: briefs, notes, references)
- `src/sites/cultscale/pages/slate/<slug>.mdx` (public CULTSCALE page)
- `src/assets/src/presentations/slate/<slug>/` (deck sources)

If a slate item needs its own site later, add a new Astro site at `src/sites/<slug>/` with a dedicated `astro.config.<slug>.mjs` and `wrangler.<slug>.toml`.

## Public page template (MDX)

Create: `src/sites/cultscale/pages/slate/<slug>.mdx`

```mdx
---
layout: ../../../../shared/layouts/SlateLayout.astro
title: "Project Name | CULTSCALE"
description: "One-line description for meta tags."
dek: "Short deck sentence shown under the title."
logline: "One-sentence logline used on the Slate index and in the header."
format: "Feature Film" # Feature Film | Feature Documentary | Series | Short | Tool | etc
genre: "Drama"       # Keep to 1-2 words
status: "In development" # In development | Packaging | Financing | Production | Post | Released
region: "MENA"
language: "Arabic / English"
order: 10
# draft: true         # Keep true until you want it treated as public-ready
# theme: "mo"         # mo | micha | drybones | default (drives the placeholder visual)
# ogTitle: "Project Name"
---

## Logline

Repeat and expand if needed.

## Overview

One short paragraph.

## Specs

- **Format:** Feature Film
- **Genre:** Drama
- **Language:** Arabic
- **Status:** In development

## Team

- **Writer:**
- **Director:**
- **Producer:**

## Contact

For partnership or inquiries: [mnm@cultscale.com](mailto:mnm@cultscale.com)
```

## Visuals

For now we use a branded placeholder visual driven by `theme`. When we have project artwork, we can add a `cover` field and render an image in the layout.
