--- interface Props { title: string; description: string; image?: string; } const canonicalURL = new URL(Astro.url.pathname, Astro.site); const { title, description, image = '/images/headshot.jpg' } = Astro.props; ---