/* ABOUT view — calmer, editorial */ function About({ go }){ const S = window.SITE; return (
{/* intro */}
About — 02 Sharayu
Maknikar
SPACE POLICY · MISSION OPERATIONS · GOVERNANCE
{S.bio.map((p,i) => ( {p} ))}

{/* experience timeline */}
Experience Operations, regulation, and outreach — a record of structured work in high-stakes systems.
{S.experience.map((e,i) => (
{e.period}
{e.place}

{e.role}{e.current && Active}

{e.org}
    {e.points.map((pt,j) =>
  • {pt}
  • )}
))}

{/* education + skills */}
Education
{S.education.map((ed,i) => (

{ed.school}

{ed.detail}
    {ed.points.map((p,j)=>
  • {p}
  • )}
))}
Capabilities {S.skills.map(s => {s})}
Currently exploring
    {S.interests.map(it =>
  • {it}
  • )}
); } window.About = About;