--- import type { BskyProfile } from '../lib/types'; import { escapeHtml, formatCount } from '../lib/render'; import { HANDLE } from '../lib/atproto'; interface Props { profile: BskyProfile; } const { profile } = Astro.props; --- {profile.banner ? (
) : ( )}{profile.description}
}