old-ybbond

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

UsesPage.js (1728B)


      1 // @flow
      2 import React from 'react';
      3 
      4 import {List, Link, Text} from '../Components';
      5 
      6 const UsesPage = () => {
      7   return (
      8     <React.Fragment>
      9       <Text as="h2">Platform</Text>
     10       <List>
     11         <List as="li">Macbook Pro 2018 13&quot; (Office)</List>
     12         <List as="li">Low-End PC with Manjaro Linux XFCE (Home)</List>
     13       </List>
     14       <Text as="h2">Hardware</Text>
     15       <List>
     16         <List as="li">
     17           Ducky One 2 Mini Keyboard{' '}
     18           <Link to="https://twitter.com/bandungpenting/status/1146845120618090497">
     19             image
     20           </Link>
     21         </List>
     22         <List as="li">Roland FP-30 Digital Piano</List>
     23       </List>
     24       <Text as="h2">Software</Text>
     25       <List>
     26         <List as="li">
     27           Neovim{' '}
     28           <Link to="https://twitter.com/bandungpenting/status/1162210601340305409">
     29             image
     30           </Link>{' '}
     31           <Link to="https://gist.github.com/ybbond/16ee5000eeca727899eac43a4c20291c">
     32             settings
     33           </Link>
     34         </List>
     35         <List as="li">
     36           tmux on kitty{' '}
     37           <Link to="https://gist.github.com/ybbond/26165e50f36a439b6b930607976a1e82">
     38             settings
     39           </Link>
     40         </List>
     41         <List as="li">
     42           Z Shell (zsh){' '}
     43           <Link to="https://gist.github.com/ybbond/e6f827f977248b5d9eda8e1c49da82e9">
     44             settings
     45           </Link>
     46         </List>
     47         <List as="li">
     48           <Link to="https://github.com/ranger/ranger">Ranger</Link> File Manager
     49         </List>
     50         <List as="li">
     51           <Link to="https://github.com/jesseduffield/lazygit">lazygit</Link>
     52         </List>
     53       </List>
     54     </React.Fragment>
     55   );
     56 };
     57 
     58 export default React.memo<{}>(UsesPage);