--- import '../styles/index.css'; interface Props { title: string; description?: string; } const { title, description = "The personal website of Matthew Kosarek", } = Astro.props; ---