--- import '../styles/global.css'; interface Props { title: string; description?: string; image?: string; canonicalURL?: string; } const { title, description = '', image = '/images/logo.png', canonicalURL = Astro.url } = Astro.props; const siteName = 'Website Name'; const siteUrl = 'https://example.com'; --- {title} | {siteName}