--- interface Props { role: string; client: string; year: string; region: string; projectTitle: string; projectSubtitle: string; projectDescription: string; stats: Array<{ label: string; value: string; }>; videoUrl: string; linkUrl: string; } const { role, client, year, region, projectTitle, projectSubtitle, projectDescription, stats, videoUrl, linkUrl } = Astro.props; ---
/// Role {role}
/// Client {client}
/// Year {year}
/// Region {region}

{projectTitle} {projectSubtitle}

{projectDescription}

{stats.map((stat) => (
{stat.label} {stat.value}
))}