--- import '../styles/global.css'; export interface Props { title: string; description: string; image?: string; } const { title, description, image } = Astro.props; const canonicalURL = new URL(Astro.url.pathname, Astro.site); const socialImage = image ? new URL(image, Astro.site) : new URL('/images/og-default.jpg', Astro.site); ---