--- interface Props { title: string; description: string; url?: string; image?: SiteImage; } const { title, description, url = Astro.url, image } = Astro.props; import person from "@data/person"; import site from "@data/site"; import { Schema } from "astro-seo-schema"; ---