summaryrefslogtreecommitdiff
path: root/moneyjsx/src/support.tsx
blob: 2b718be3e78c461283b9143e3b22919bab593b1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import * as JSX from './jsx';

import { Page, GroupBox } from './components';

export default function Support() {
  return <Page>
    <GroupBox title="Support pages" style="width: 60%">
      <div style="display: flex; flex-direction: column">
        { /* note day: u have to actually add those routes in index-page.tsx */ }
        <a onclick={ () => JSX.navigate( "/models" ) }>Models</a>
        <a onclick={ () => JSX.navigate( "/tutorial" ) }>Tutorial</a>
        <a onclick={ () => JSX.navigate( "/api" ) }>API</a>
        <a onclick={ () => JSX.navigate( "/tos" ) }>ToS</a>
        <a href="https://twitter.com/axonbox">Contact</a>
      </div>
    </GroupBox>
  </Page>
}