/* Team, Publications, Talks (with YouTube placeholders) */ function Team({ accentVar }) { const d = window.LB_DATA.team; const all = [...d.members, d.advisor]; const card = (m) => { const tilt = useTilt(5); const isAdvisor = m === d.advisor; return ( {isAdvisor && (
ADVISOR
)}
{m.role}
{m.name}

{m.bio}

LinkedIn
); }; return (
{d.eyebrow}

{d.title}

{all.map(m => card(m))}
); } function Avatar({ m, accentVar }) { const [err, setErr] = React.useState(false); if (m.image && !err) { return (
{m.name} setErr(true)} style={{ width:'100%', height:'100%', objectFit:'cover', display:'block' }}/>
); } return (
{m.initials}
); } window.Team = Team; function Research({ accentVar }) { const pubs = window.LB_DATA.publications; const featured = pubs.filter(p => p.featured); const rest = pubs.filter(p => !p.featured); return (
PUBLICATIONS

50+ peer-reviewed publications, in production.

Selected work from the Krishnaswamy Lab and Latent Bio collaborators — the methods behind the platform.

{featured.map(p => ( { e.currentTarget.style.transform='translateY(-4px)'; e.currentTarget.style.boxShadow='0 20px 40px rgba(0,34,68,0.25)'; }} onMouseLeave={e=>{ e.currentTarget.style.transform=''; e.currentTarget.style.boxShadow=''; }} > {p.cover && (
{`${p.journal}
)}
{p.journal} · Cover
{p.title}
Read paper →
))}
{rest.map((p, i) => ( e.currentTarget.style.background='var(--lb-gray-50)'} onMouseLeave={e=> e.currentTarget.style.background=''} >
{p.journal}
{p.title}
))}
); } window.Research = Research;