import system from '~/config/system.json' import styles from '~/styles/about.module.css' interface Member { name: string, mainPronouns: string, avatarUrl: string, color: string, bioShort: string, readMore: string, } export default function About() { return ( <>

About Us

{system.members.map((member: Member) => { const style = { "--member-color": member.color } as React.CSSProperties return (

{member.name}

{member.mainPronouns}

{member.bioShort}

{member.readMore}

) })}

Our system is composed of the above three members. Generally you don't have to care who is most present at any given time, as we share memory and flow in and out of front pretty often, but we do appreciate when people notice us individually

) }