--- // 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 { title, description, image = '/placeholder-social.jpg' } = Astro.props; --- {title}