old-ybbond

My old site that was written with ReactJS
Log | Files | Refs | README | LICENSE | CC-LICENSE

CVPage.js (2485B)


      1 // @flow
      2 import React from 'react';
      3 
      4 import {Link, List, Text} from '../Components';
      5 
      6 const CVPage = () => {
      7   return (
      8     <React.Fragment>
      9       <Text as="h2">Quests</Text>
     10       <List>
     11         <List as="li">
     12           <Text as="span" variant="red" title="mid 2014">
     13             <time dateTime="2014">2014</time>
     14           </Text>
     15           <br />
     16           Design Intern <Link to="https://www.xg.co.id/">@X-Graphic</Link>
     17         </List>
     18         <List as="li">
     19           <Text as="span" variant="red" title="Oct 2016 - Mar 2018">
     20             <time dateTime="2016">2016</time> -{' '}
     21             <time dateTime="2018">2018</time>
     22           </Text>
     23           <br />
     24           Quality Assurance{' '}
     25           <Link to="https://www.touchten.com/">@Touchten Games</Link>
     26         </List>
     27         <List as="li">
     28           <Text as="span" variant="red" title="Mar 2018 - June 2019">
     29             <time dateTime="2018">2018</time> -{' '}
     30             <time dateTime="2019">2019</time>
     31           </Text>
     32           <br />
     33           Frontend Engineer <Link to="https://vospay.id/">@Vospay</Link>
     34         </List>
     35         <List as="li">
     36           <Text as="span" variant="red" title="July 2019 - present">
     37             <time dateTime="2019">2019</time> -
     38           </Text>
     39           <br />
     40           Frontend Engineer <Link to="https://kumparan.com/">@kumparan</Link>
     41         </List>
     42       </List>
     43       <Text as="h2">Good to Know</Text>
     44       <List>
     45         <List as="li">Studied CS in Binus, never finish</List>
     46         <List as="li">Drinks coffee</List>
     47         <List as="li">Vim user</List>
     48         <List as="li">Loves moshing at indie band gigs</List>
     49         <List as="li">from Jakarta, Indonesia</List>
     50       </List>
     51       <Text as="h2">Find Me</Text>
     52       <List>
     53         <List as="li">everywhere: ybbond or bandungpenting</List>
     54         <List as="li">
     55           <Link to="mailto:bandungpenting@gmail.com?Subject=From%20ybbond.dev">
     56             bandungpenting@gmail.com
     57           </Link>
     58         </List>
     59         <List as="li">
     60           <Link to="https://github.com/ybbond" data-hint="GitHub" rel="me">
     61             Github
     62           </Link>
     63           , <Link to="https://www.instagram.com/ybbond">Instagram</Link>,{' '}
     64           <Link
     65             to="https://twitter.com/bandungpenting"
     66             data-hint="Twitter"
     67             rel="me"
     68           >
     69             Twitter
     70           </Link>
     71         </List>
     72       </List>
     73     </React.Fragment>
     74   );
     75 };
     76 
     77 export default React.memo<{}>(CVPage);