--- 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; ---
SYS.ROLE
{role}
SYS.CLIENT {client}
SYS.YEAR {year}
SYS.REGION {region}

{projectTitle} {projectSubtitle}

{projectDescription}

{stats.map((stat, idx) => (
0{idx + 1}. {stat.label} {stat.value}
))}
UPLINK.PROJECT_DETAIL