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