From c32753a06f454ef15011e8df8a2083b9cdc72f58 Mon Sep 17 00:00:00 2001 From: Ashelyn Rose Date: Mon, 8 May 2023 23:10:59 -0600 Subject: filled out about system page --- app/about/page.tsx | 42 ++++++++++++++++++++++++++++++++++++++---- 1 file changed, 38 insertions(+), 4 deletions(-) (limited to 'app') diff --git a/app/about/page.tsx b/app/about/page.tsx index dd04ccc..82d4864 100644 --- a/app/about/page.tsx +++ b/app/about/page.tsx @@ -1,12 +1,46 @@ +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 + About Us

-
-

Maybe we say some things about ourselves?

-
+
+ {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 +

+
) } -- cgit 1.4.1