--- interface Props { title: string; type: 'text' | 'website'; image?: string; description?: string; } const {title, type, description, image} = Astro.props const pageTitle = (title ? `${title} | ` : '') + 'Vikunja' const imageUrl = image ? image : new URL('/images/vikunja.jpg', Astro.url) ---