--- export interface Props { title: string; description: string; image?: string; type?: string; next?: string; prev?: string; canonicalURL?: string; } const { title, description, image, type, next, prev, canonicalURL } = Astro.props as Props; ---