import type { SeedVoice, StudioNarrative } from "../content/types"; interface StudioSectionProps { narrative: StudioNarrative; seedLibrary: SeedVoice[]; } export function StudioSection({ narrative, seedLibrary }: StudioSectionProps) { return (

{narrative.headline}

{narrative.body}

{narrative.pillars.map((pillar) => (

{pillar.title}

{pillar.description}

))}
Aether Voice Studio workflow illustration

Seed voice library

{seedLibrary.length} curated entries
{seedLibrary.map((voice) => (
{voice.name}

{voice.persona}

{voice.route}

{voice.bestFor}

{voice.styleTags.map((tag) => ( {tag} ))}
))}
); }