--- interface Props { title: string; description?: string; ogImage?: string; } const { title, description = 'The community hub for apps and people building on AT Protocol', ogImage, } = Astro.props; const canonicalURL = new URL(Astro.url.pathname, Astro.site); import '../styles/global.css'; ---