--- // Import the global.css file here so that it is included on // all pages through the use of the component. import "../styles/global.css"; export interface Props { title: string; description: string; image?: string; } const canonicalURL = new URL(Astro.url.pathname, Astro.site); const { title, description, image = "/placeholder-social.jpg" } = Astro.props; --- {title}