summaryrefslogtreecommitdiff
path: root/moneyjsx/src/support.tsx
diff options
context:
space:
mode:
authoraura <nw@moneybot.cc>2026-02-17 22:39:42 +0100
committeraura <nw@moneybot.cc>2026-02-17 22:39:42 +0100
commit636b0323075225c584b62719ed51e75521bb7ffb (patch)
tree61b02271b6d0695a4beffc23fb6eb062a7da22c3 /moneyjsx/src/support.tsx
push source
Diffstat (limited to 'moneyjsx/src/support.tsx')
-rw-r--r--moneyjsx/src/support.tsx18
1 files changed, 18 insertions, 0 deletions
diff --git a/moneyjsx/src/support.tsx b/moneyjsx/src/support.tsx
new file mode 100644
index 0000000..2b718be
--- /dev/null
+++ b/moneyjsx/src/support.tsx
@@ -0,0 +1,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>
+}