--- import { recaptchaKeyId } from '../lib/recaptcha' interface Props { title: string | null socialImage?: string } const { title, socialImage } = Astro.props as Props const canonicalUrl = new URL(Astro.url.pathname, Astro.site) const image = socialImage ?? 'https://sprig.hackclub.com/stories-tiny/sprig-front.jpeg' --- {title ? `${title} | Sprig` : 'Sprig'}