--- export interface Props { title: string | undefined description: string | undefined } const defaultDescription = 'Professional software engineer specializing in web development with a decade of experience building web applications for both private businesses and government-funded high-impact projects utilizing web technologies, IoT, data viz/insights, remote sensing, and GIS' const defaultTitle = 'Ayo Ayco | Engineering Leader, Software Engineer, Web Developer' let { title, description = defaultDescription } = Astro.props const baseURL = 'https://ayo.ayco.io' --- {title ? `${title} | ${defaultTitle}` : defaultTitle}