> ## Documentation Index
> Fetch the complete documentation index at: https://dos.dzaleka.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Dancers

> Document the dancers and dance crews bringing movement, culture, and hope to Dzaleka

## Overview

Dance is a powerful form of expression in Dzaleka Refugee Camp, serving as entertainment, cultural preservation, therapy, and economic opportunity. The dancers collection documents both individual performers and dance crews, preserving their stories and celebrating their artistry.

## Cultural Significance

Dance in Dzaleka fulfills multiple vital roles:

* **Cultural Heritage**: Traditional dances preserve and share cultural identities from across Africa
* **Community Building**: Dance crews create family-like bonds and shared purpose
* **Emotional Expression**: Movement provides an outlet for processing trauma and celebrating joy
* **Economic Opportunity**: Performance fees provide income for dancers and their families
* **Youth Development**: Dance keeps young people engaged, active, and connected
* **Cross-Cultural Connection**: Fusion styles blend traditions from different communities
* **Hope and Messages**: Performances convey messages of resilience and possibility

## Content Schema

The dancers collection uses this schema defined in `src/content.config.ts:548-575`:

```typescript theme={null}
const dancerSchema = z.object({
  title: z.string(),
  slug: z.string().optional(),
  type: z.enum(['individual', 'group']).optional(),
  image: z.string().optional(),
  description: z.string().optional(),
  interviewer: z.string().optional(),
  interviewDate: z.string().optional(),
  biographyAuthor: z.string().optional(),
  age: z.number().optional(),
  nationality: z.string().optional(),
  birthplace: z.string().optional(),
  arrivedInMalawi: z.string().optional(),
  danceStyles: z.array(z.string()).optional(),
  festivals: z.array(z.string()).optional(),
  inspiration: z.string().optional(),
  email: z.string().optional(),
  phone: z.string().optional(),
  whatsapp: z.string().optional(),
  featured: z.boolean().optional(),
  members: z.array(z.object({
    name: z.string(),
    age: z.number().optional(),
    nationality: z.string().optional(),
    role: z.string().optional(),
    specialties: z.array(z.string()).optional(),
  })).optional(),
});
```

## Individual Dancer Example

From `src/content/dancers/christian-piniero.md`:

```markdown theme={null}
---
title: "Christian Lwaboshi Rubambiza 'Piniero'"
slug: "christian-piniero"
type: "individual"
image: "/images/dancers/christian-piniero.jpg"
description: "Professional dancer inspired by Michael Jackson, performing at major festivals across Malawi."
interviewer: "Deogratias N Mukandikwa"
interviewDate: "16th August 2022"
age: 30
nationality: "DRC"
birthplace: "Goma, DRC"
arrivedInMalawi: "2009"
danceStyles: ["Contemporary", "Hip Hop", "Michael Jackson Style"]
festivals: ["Lake of Stars Festival", "Sand Music Festival", "Tumaini Festival", "Makasi Festival"]
inspiration: "Michael Jackson"
email: "christian.piniero@gmail.com"
phone: "+265 888 123 456"
whatsapp: "+265 888 123 456"
featured: true
---

# Christian Lwaboshi Rubambiza "Piniero"

## Personal Information

- **Age**: 30 years old
- **Nationality**: Democratic Republic of Congo (DRC)
- **Birthplace**: Goma, DRC
- **Arrived in Malawi**: 2009
- **Dance Inspiration**: Michael Jackson

## Biography

I'm from DRCongo, Goma, i arrived in Malawi in 2009 and i am 30years of age.

I started dancing when i was 10 yrs but i was only dancing at home. I was so motivated by Michael Jackson's dances up until now and my dance skills has improved.

As a dancer living in a refugee camp "in malawi", its so hard because we're not free, like a person can open a dance class in town. It's not allowed for a refugee to work in town.

That does not discourage me, because for me to perform in town, i have to he hired by malawians na i get to have that little something to help/feed the family at home.

I have performed at so many places here in malawi such as Lake of stars Festival, Sand music festival, Tumaini Festival, Makasi Festival, these are just some among the many places i have performed at.

As a Refugee, i would like to say or tell whoever is reading this book to support Refugees because they're vulnerable people.
```

## Dance Group Example

From `src/content/dancers/fighters-dance-crew.md`:

```markdown theme={null}
---
title: "Fighters Dance Crew"
slug: "fighters-dance-crew"
type: "group"
image: "/images/dancers/fighters-dance-crew.jpg"
description: "A dynamic crew performing Afro Dance, Hip Hop, Contemporary, Cultural and Acrobatic Dance since 2014/2015."
interviewDate: "3rd May 2022"
biographyAuthor: "Nellyson_Deo"
members:
  - name: "Van Peace"
    age: 23
    nationality: "DRC"
    role: "Lead Dancer"
    specialties: ["Afro Dance", "Hip Hop"]
  - name: "Princo HB"
    age: 20
    nationality: "DRC"
    role: "Dancer"
    specialties: ["Hip Hop", "Contemporary"]
  - name: "Chriss Kid"
    age: 21
    nationality: "BURUNDI"
    role: "Dancer"
    specialties: ["Contemporary", "Cultural Dance"]
danceStyles: ["Afro Dance", "Hip Hop Dance", "Contemporary Dance", "Cultural Dance", "Acrobatic Dance"]
festivals: ["Launch of Airtel 4G Network", "Sand Music Festival", "Hangout Music Festival", "Tumaini Festival", "Urban Vibes Maso Awards Festival"]
rehearsalSchedule: "Monday–Friday"
founded: "2014/2015"
previousName: "Star Boys"
featured: true
---

# Fighters Dance Crew

## Biography

We do different sorts of dance due to our environment here in the camp. We are people from different socio-economic backgrounds. We do AFRO DANCE, HIP HOP DANCE, CONTEMPORARY DANCE, CULTURAL DANCE and ACROBATIC DANCE

When we first started dancing we were not called the "FIGHTERS". No! We were called the "STAR BOYS." But things soon came to a point where we were not agreeing on anything, and so we got divided. Some left the group, while others continued, and that is how we came up with "FIGHTERS DANCING CREW." We have been together since 2014/2015.

We rehearse from Monday–Friday, and we have performed at many different events, such as the Launch of Airtel 4G Network, Sand Music Festival, Hangout Music Festival, Tumaini Festival, Urban Vibes Maso Awards Festival, just to list a few.

Dance means so much to us. Firstly, we love to entertain our community, and secondly, throughout our dancing we love to leave a certain message everywhere we perform. To sum it up, we give messages of hope in our community through dance.
```

## Creating Dancer Profiles

### Profile Guidelines

<Steps>
  <Step title="Interview the Dancer(s)">
    Have an in-depth conversation about their dance journey, inspirations, challenges, and goals. Record their story in their own words.
  </Step>

  <Step title="Document Performances">
    If possible, photograph or video dancers in action. Capture their energy and unique style.
  </Step>

  <Step title="List Performance History">
    Document festivals, competitions, and other events where they've performed.
  </Step>

  <Step title="Respect Contact Preferences">
    Only include contact information if the dancer wants to be available for bookings.
  </Step>
</Steps>

### Creating an Individual Dancer Entry

```bash theme={null}
touch src/content/dancers/dancer-name.md
```

```markdown theme={null}
---
title: "Full Name or Stage Name"
slug: "dancer-name"
type: "individual"
image: "/images/dancers/dancer-name.jpg"
description: "Brief compelling description of the dancer"
interviewer: "Name of Interviewer"
interviewDate: "Date of Interview"
age: 25
nationality: "Country"
birthplace: "City, Country"
arrivedInMalawi: "Year"
danceStyles: ["Style 1", "Style 2", "Style 3"]
festivals: ["Festival 1", "Festival 2"]
inspiration: "What/who inspires their dance"
email: "contact@email.com"
phone: "+265 xxx xxx xxx"
whatsapp: "+265 xxx xxx xxx"
featured: false
---

# Dancer Name

## Personal Information

- **Age**: X years old
- **Nationality**: Country
- **Birthplace**: City
- **Arrived in Malawi**: Year

## Biography

[Their story in their own words - how they started dancing, what it means to them, their journey, challenges, and hopes]

## Dance Style

[Description of their unique approach, technique, specialties]

## Performances

[Notable performances, festivals, competitions]

## Message

[What they want audiences to know or feel through their dance]
```

### Creating a Dance Group Entry

```bash theme={null}
touch src/content/dancers/crew-name.md
```

```markdown theme={null}
---
title: "Crew Name"
slug: "crew-name"
type: "group"
image: "/images/dancers/crew-name.jpg"
description: "Brief description of the group and their style"
interviewDate: "Date"
biographyAuthor: "Interviewer Name"
members:
  - name: "Member 1"
    age: 22
    nationality: "Country"
    role: "Role in crew"
    specialties: ["Specialty 1", "Specialty 2"]
  - name: "Member 2"
    age: 24
    nationality: "Country"
    role: "Role in crew"
    specialties: ["Specialty 1", "Specialty 2"]
danceStyles: ["Primary styles performed"]
festivals: ["Events performed at"]
rehearsalSchedule: "Practice schedule"
founded: "Year founded"
email: "crew@email.com"
featured: false
---

# Crew Name

## About the Crew

[Group's origin story, how they came together, what unites them]

## Members

[If not listed in frontmatter, describe key members and their roles]

## Dance Style and Philosophy

[What makes their performance unique, their artistic vision, messages they convey]

## Performances and Impact

[Notable performances, community impact, what they hope to achieve]
```

## Field Descriptions

### Required Fields

<ParamField path="title" type="string" required>
  Dancer's name or stage name (for individuals) or crew name (for groups)
</ParamField>

<ParamField path="type" type="enum" required>
  Either `"individual"` or `"group"`
</ParamField>

### Individual Dancer Fields

<ParamField path="age" type="number">
  Current age of the dancer
</ParamField>

<ParamField path="nationality" type="string">
  Country of origin
</ParamField>

<ParamField path="birthplace" type="string">
  City and country of birth
</ParamField>

<ParamField path="arrivedInMalawi" type="string">
  Year they arrived in Malawi
</ParamField>

<ParamField path="inspiration" type="string">
  What or who inspires their dance (e.g., "Michael Jackson", "Traditional Congolese dance")
</ParamField>

### Dance Group Fields

<ParamField path="members" type="array">
  Array of member objects with name, age, nationality, role, and specialties
</ParamField>

<ParamField path="founded" type="string">
  Year the group was founded
</ParamField>

<ParamField path="rehearsalSchedule" type="string">
  When the group practices (e.g., "Monday-Friday", "Weekends")
</ParamField>

### Shared Fields

<ParamField path="danceStyles" type="array">
  Array of dance styles: \["Hip Hop", "Contemporary", "Afro Dance", "Cultural Dance", "Acrobatic", etc.]
</ParamField>

<ParamField path="festivals" type="array">
  List of festivals, events, and venues where they've performed
</ParamField>

<ParamField path="description" type="string">
  Brief compelling description for previews and search results
</ParamField>

<ParamField path="interviewer" type="string">
  Name of person who conducted the interview
</ParamField>

<ParamField path="interviewDate" type="string">
  Date the interview was conducted
</ParamField>

<ParamField path="image" type="string">
  Path to photo of the dancer or crew
</ParamField>

<ParamField path="featured" type="boolean" default="false">
  Whether to feature prominently in listings
</ParamField>

### Contact Fields (Optional)

<Warning>
  Only include contact information if the dancer/crew wants to be available for performance bookings. Always ask permission first.
</Warning>

<ParamField path="email" type="string">
  Email address for booking inquiries
</ParamField>

<ParamField path="phone" type="string">
  Phone number (format: +265 xxx xxx xxx)
</ParamField>

<ParamField path="whatsapp" type="string">
  WhatsApp number (often same as phone)
</ParamField>

## Dance Styles in Dzaleka

Common dance styles performed in the camp:

<CardGroup cols={2}>
  <Card title="Afro Dance" icon="drum">
    Traditional and contemporary African dance styles incorporating cultural movements and modern flair
  </Card>

  <Card title="Hip Hop" icon="headphones">
    Urban street dance styles including breaking, popping, locking, and freestyle
  </Card>

  <Card title="Contemporary" icon="sparkles">
    Modern expressive dance combining elements of ballet, modern, and jazz
  </Card>

  <Card title="Cultural Dance" icon="users">
    Traditional dances from specific ethnic groups and countries preserving cultural heritage
  </Card>

  <Card title="Acrobatic Dance" icon="person-running">
    Dance incorporating gymnastics, tumbling, and athletic movements
  </Card>

  <Card title="Fusion" icon="shuffle">
    Creative blending of multiple styles creating unique performances
  </Card>
</CardGroup>

## Major Performance Venues and Festivals

### Tumaini Festival

The flagship annual festival in Dzaleka featuring dance, music, and arts. Most dancers aspire to perform here.

### Lake of Stars Festival

One of Malawi's largest music festivals, held annually on the shores of Lake Malawi.

### Sand Music Festival

A popular music and dance event that features refugee performers.

### Corporate Events

Product launches (like Airtel 4G), brand activations, and company celebrations often hire Dzaleka dancers.

### Community Events

Local celebrations, weddings, school programs, and religious gatherings within the camp.

## Photography Guidelines

### Action Shots

<Tip>
  The best dancer photos capture movement and energy. Use fast shutter speeds to freeze action or slower speeds to show motion blur.
</Tip>

* **In Performance**: Capture dancers during actual performances at festivals or events
* **Rehearsals**: Document practice sessions showing preparation and technique
* **Portraits**: Include both action shots and posed portraits
* **Group Photos**: For crews, get both full group shots and individual member photos

### Technical Settings

* **Lighting**: Dance photos often require good lighting—outdoor daytime or well-lit performance venues work best
* **Angles**: Shoot from multiple angles to capture different aspects of the choreography
* **Burst Mode**: Use continuous shooting to capture the perfect moment in a sequence

## Interview Questions for Dancers

<AccordionGroup>
  <Accordion title="Background and Journey">
    * When did you start dancing?
    * What inspired you to become a dancer?
    * Who taught you or how did you learn?
    * What challenges have you faced as a dancer in Dzaleka?
    * How has your style evolved over time?
  </Accordion>

  <Accordion title="Artistic Vision">
    * What does dance mean to you?
    * What message do you want to convey through your performances?
    * How does your cultural background influence your dance?
    * What makes your style unique?
    * Who are your dance inspirations?
  </Accordion>

  <Accordion title="Performance and Impact">
    * What festivals or events have you performed at?
    * What's your most memorable performance?
    * How does the community respond to your dance?
    * How does dance impact your life and your family?
    * What role does dance play in the refugee community?
  </Accordion>

  <Accordion title="Future and Dreams">
    * What are your goals as a dancer?
    * What would you like to achieve in the next few years?
    * What do you want people to know about dance in Dzaleka?
    * What message do you have for readers/viewers?
    * How can people support dancers in Dzaleka?
  </Accordion>
</AccordionGroup>

## Booking and Performance Information

If dancers want to be available for bookings, include this section:

```markdown theme={null}
## Book This Performer

**Available For:**
- Festival performances
- Corporate events
- Private celebrations
- Educational programs
- Cultural demonstrations

**Contact:**
- Email: dancer@email.com
- Phone/WhatsApp: +265 xxx xxx xxx

**Performance Details:**
- Solo/Group size: [number] dancers
- Performance duration: [typical length]
- Setup requirements: [space, sound, etc.]
```

## API Access

Access the dancers collection programmatically:

```typescript theme={null}
import { getCollection } from 'astro:content';

// Get all dancers
const dancers = await getCollection('dancers');

// Filter by type
const individuals = dancers.filter(d => d.data.type === 'individual');
const groups = dancers.filter(d => d.data.type === 'group');

// Filter by style
const hipHopDancers = dancers.filter(d => 
  d.data.danceStyles?.includes('Hip Hop')
);

// Get featured dancers
const featured = dancers.filter(d => d.data.featured);
```

## Best Practices

<CardGroup cols={2}>
  <Card title="Capture Their Voice" icon="microphone">
    Write profiles in the dancers' own words as much as possible. Direct quotes are powerful.
  </Card>

  <Card title="Show, Don't Just Tell" icon="camera">
    Include vivid descriptions of their movement style and what makes them unique.
  </Card>

  <Card title="Highlight Achievements" icon="trophy">
    List festivals, competitions, and recognition they've received.
  </Card>

  <Card title="Provide Context" icon="book">
    Explain the challenges refugees face in pursuing dance professionally.
  </Card>

  <Card title="Celebrate Joy" icon="face-smile">
    While acknowledging challenges, emphasize the joy, hope, and community that dance brings.
  </Card>

  <Card title="Enable Support" icon="hand-holding-heart">
    Make it easy for people to book performances or support dancers if they want that visibility.
  </Card>
</CardGroup>

## Related Resources

* [Photo Gallery](/heritage/photo-gallery) - Performance photography
* [Poets](/heritage/poets) - Spoken word artists who often perform at the same events
* [Events](/content/events) - Upcoming festivals and performance opportunities
