--- import '../styles/global.css'; import PersistentPlayer from '../components/global/PersistentPlayer'; interface Props { title: string; description?: string; image?: string; } const { title, description = 'The Computer Guru Show - Helping you deal with all of your technology needs while treating you like a person in the process.', image = '/og-image.jpg' } = Astro.props; const canonicalURL = new URL(Astro.url.pathname, Astro.site); ---