--- import '../styles/global.css'; import UserStatus from '../components/UserStatus.vue'; interface Props { title: string; description?: string; image?: string; canonicalURL?: string; } const { title, description = 'NovaBlog - 一个极简、高效的程序员博客系统', image = '/og-default.png', canonicalURL = Astro.url.href, } = Astro.props; const { site } = Astro; const socialImageURL = image.startsWith('http') ? image : new URL(image, site).href; --- {title}