--- export interface Props { studio?: string; city?: string; country?: string; est?: number; } const { studio = 'Mostuki Photo', city = 'CANNES', country = 'FR', est = 2018 } = Astro.props; const year = new Date().getFullYear(); ---