1+ "use client"
2+
3+ // chakra ui imports
4+ import {
5+ Box ,
6+ ClientOnly ,
7+ Flex ,
8+ List ,
9+ Image ,
10+ Text ,
11+ } from "@chakra-ui/react" ;
12+
13+ import {
14+ useColorModeValue
15+ } from "@/components/ui/color-mode" ;
16+
17+ // fonts
18+ import { funnel , geist , geistMono } from "@/app/fonts" ;
19+
20+ // components
21+ import { Heading } from "@/components/ui/heading" ;
22+ import { TeamCard } from "@/components/ui/teamCard" ;
23+
24+ export default function Team ( ) {
25+ const textColor = useColorModeValue ( "black" , "white" ) ;
26+
27+ return (
28+ < Box >
29+ < Heading color = { textColor } >
30+ Team Members
31+ </ Heading >
32+ < List . Root listStyle = "none" >
33+ < List . Item marginTop = { 8 } >
34+ < Flex alignItems = "flex-start" >
35+ < List . Indicator asChild marginTop = { 3 } >
36+ < Image objectFit = "contain" src = "/assets/images/orb-light-2.png" width = { [ 8 , 8 , 16 ] } />
37+ </ List . Indicator >
38+ < TeamCard
39+ name = "Harum"
40+ info = "pronounced: ha-room, pronouns: they/them"
41+ about = "Full-stack developer focused on JavaScript and Rust. Board experience with a reproductive health nonprofit and care work as an abortion doula."
42+ />
43+ </ Flex >
44+ </ List . Item >
45+ < List . Item marginTop = { 8 } >
46+ < Flex alignItems = "flex-start" >
47+ < List . Indicator asChild marginTop = { 3 } >
48+ < Image objectFit = "contain" src = "/assets/images/orb-light-2.png" width = { [ 8 , 8 , 16 ] } />
49+ </ List . Indicator >
50+ < TeamCard
51+ name = "Josh"
52+ info = "pronouns: they/them"
53+ about = "Two decades in software, architecture, networks, and systems for social justice. Builds secure communication platforms for organizers and journalists."
54+ />
55+ </ Flex >
56+ </ List . Item >
57+ < List . Item marginTop = { 8 } >
58+ < Flex alignItems = "flex-start" >
59+ < List . Indicator asChild marginTop = { 3 } >
60+ < Image objectFit = "contain" src = "/assets/images/orb-light-2.png" width = { [ 8 , 8 , 16 ] } />
61+ </ List . Indicator >
62+ < TeamCard
63+ name = "Morgan"
64+ info = "pronouns: she/her"
65+ about = "Project manager with two decades across construction, art, and education. Plans work from start to finish and clears blockers."
66+ />
67+ </ Flex >
68+ </ List . Item >
69+ < List . Item marginTop = { 8 } >
70+ < Flex alignItems = "flex-start" >
71+ < List . Indicator asChild marginTop = { 3 } >
72+ < Image objectFit = "contain" src = "/assets/images/orb-light-2.png" width = { [ 8 , 8 , 16 ] } />
73+ </ List . Indicator >
74+ < TeamCard
75+ name = "Rae"
76+ info = "no pronouns"
77+ about = "Full-stack developer and activist with a multimedia background. Specializes in bringing designs to life with front-end and full-stack JavaScript."
78+ />
79+ </ Flex >
80+ </ List . Item >
81+ </ List . Root >
82+
83+ </ Box >
84+ )
85+ }
0 commit comments