--- import '../styles/blog.css'; export interface Props { title: string; description: string; } const canonicalURL = new URL(Astro.url.pathname, Astro.site); const { title, description } = Astro.props; ---