--- import "../styles/global.css"; interface Props { title?: string; description?: string; canonical?: string; article?: boolean; image?: string; } const { title = "K1412 Research", description = "技术研究、实验记录与可验证的公开成果。", canonical = Astro.url.href, article = false, image = "/og-default.svg" } = Astro.props; const pageTitle = title === "K1412 Research" ? title : `${title} · K1412 Research`; const socialImage = new URL(image, Astro.site ?? Astro.url).href; ---