--- import Logo from "@components/images/Logo.astro" interface Props { title?: string; description?: string; url?: string; logoUrlLight?: string; logoUrlDark?: string; } const { title, description, url, logoUrlLight }: Props = Astro.props; const logoUrlDark = Astro.props.logoUrlDark || logoUrlLight; ---
{logoUrlLight && (
)}
{title}

{description}