--- export interface Props { targetDate: string; label: string; } const { targetDate, label } = Astro.props; ---
D-Day {label} | {new Date(targetDate).toDateString()}