--- import { ViewTransitions } from "astro:transitions"; export interface Props { title: string; description: string; image?: string; } const canonicalURL = new URL(Astro.url.pathname, Astro.site); const { title, description, image = "/open-graph.jpg" } = Astro.props; ---