--- export interface Props { title?: string | undefined description?: string | undefined ogImage?: 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 - Web Dev, Engineer, Leader, Thinker' const defaultOgImage = 'ayo.png' let { title, description = defaultDescription, ogImage = defaultOgImage, } = Astro.props const baseURL = Astro.site?.toString().slice(0, -1) // ?? 'https://ayo.ayco.io' ---