--- import '../styles/global.css'; interface Props { title: string; description?: string; showHeader?: boolean; isHome?: boolean; urls?: string[]; } const { title, description = 'personal website of ' + title, showHeader = true, isHome = false, urls = [] } = Astro.props; ---