--- 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; --- {title} {urls.length > 0 && } {showHeader && (
{isHome ? title : 'lewis m.w.'} mail gh rss sitemap random newest find
)}