--- interface Props { title: string; description?: string; ogImage?: string; canonicalURL?: string; } const { title, description = "Hidden Den Cafe - A cozy, self-hosted corner of the internet. Privacy-focused, furry-friendly, and built with love.", ogImage = "/og-image.png", canonicalURL = Astro.url.pathname, } = Astro.props; const fullCanonicalURL = new URL(canonicalURL, Astro.site).href; const fullOgImage = new URL(ogImage, Astro.site).href; ---