File size: 2,184 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import React from 'react';
import { Box, Text, Textarea, VStack } from '@chakra-ui/react';
import {
   titleStyles,
   CustomizeProfileCard,
   SmallLabel,
   Label,
} from '../../../utils/CustomizeProfileStyles';

const Coding = ({
   learningRef,
   skillRef,
   hackingRef,
   avaliableRef,
   profileData,
}) => {
   return (
      <CustomizeProfileCard>
         <Text {...titleStyles}>Coding</Text>

         <VStack spacing={3}>
            <Box w='100%'>
               <Label>Currently learning</Label>
               <SmallLabel>
                  What are you learning right now? What are the new tools and
                  languages you're picking up right now?
               </SmallLabel>
               <Textarea
                  ref={learningRef}
                  defaultValue={profileData?.learning}
               />
            </Box>

            <Box w='100%'>
               <Label>Skill / language</Label>
               <SmallLabel>
                  What tools and languages are you most experienced with? Are
                  you specialized or more of a generalist?
               </SmallLabel>
               <Textarea
                  placeholder='Any languages, frameworks, etc. to highlight?'
                  ref={skillRef}
                  defaultValue={profileData?.skills}
               />
            </Box>

            <Box w='100%'>
               <Label>Currently hacking on</Label>
               <SmallLabel>
                  What projects are currently occupying most of your time?
               </SmallLabel>
               <Textarea ref={hackingRef} defaultValue={profileData?.hacking} />
            </Box>

            <Box w='100%'>
               <Label>Available for</Label>
               <SmallLabel>
                  What kinds of collaborations or discussions are you available
                  for? What's a good reason to say Hey! to you these days?
               </SmallLabel>
               <Textarea
                  ref={avaliableRef}
                  defaultValue={profileData?.avaliable}
               />
            </Box>
         </VStack>
      </CustomizeProfileCard>
   );
};

export default Coding;