--- import type { WithContext, Thing } from "schema-dts"; import JsonLd from "./JsonLd.astro"; import OpenGraph from "./OpenGraph.astro"; type Props = { readonly description: string; readonly title: string; readonly schema: WithContext; }; const canonicalURL = new URL(Astro.url.pathname, Astro.site); const { description, title, schema } = Astro.props; --- {title}