--- interface Props { title: string; banner?: string; graph?: { description: string; type?: "website" | "article"; }; } const title = "::" + Astro.props.title; const { banner = "https://entomoviscera.online/mainbanner.png" } = Astro.props; const { graph } = Astro.props; --- {title} { graph && ( ) }