--- import LocalFont from '../generic/LocalFont.astro'; import { ViewTransitions } from 'astro:transitions'; import { getSettings, invariant } from "@matthiesenxyz/astro-ghostcms/api"; import { getOgImagePath } from "@matthiesenxyz/astro-ghostcms/satoriOG"; const settings = await getSettings(); invariant(settings, 'Settings not found'); const Ghosttitle = settings.title; interface Props { title: string; description: string; } const ogI = new URL(getOgImagePath(Astro.url.pathname), Astro.url.origin).href; const canonicalURL = new URL(Astro.url.pathname, Astro.site); const { title, description } = Astro.props; --- {Ghosttitle} | {title}