--- // Import the global.css file here so that it is included on // all pages through the use of the component. import { themeConfig } from '@/config' import type { BaseHeadProps } from '@/types/component.types' import 'katex/dist/katex.min.css' const canonicalURL = new URL(Astro.url.pathname, Astro.site) const { title, description, ogImage } = Astro.props as BaseHeadProps const imageUrl = ogImage ? new URL(ogImage, Astro.url) : new URL('/og/chiri-og.png', Astro.url) --- {title || themeConfig.site.title}