๐Ÿ“ฆ aquaticcalf / kanban

๐Ÿ“„ home.tsx ยท 37 lines
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
37import { useRouter } from "@/router/hook"
import { useKeyboard } from "@opentui/react"

function Home() {
  const router = useRouter()

  useKeyboard((_e) => {
    router.goto("board", { id: "someid" })
  })

  const handleMouseDown = () => {
    router.goto("board", { id: "someid" })
  }

  return (
    <box alignItems="center" justifyContent="center" flexGrow={1}>
      <box justifyContent="center" alignItems="flex-end">
        <ascii-font font="tiny" text="kanban" />
        <box marginTop={1}>
          <box
            onMouseDown={handleMouseDown}
            paddingLeft={2}
            paddingRight={2}
            backgroundColor="blue"
            justifyContent="center"
            alignItems="center"
          >
            <text attributes={16 | 4}>go to board</text>
          </box>
        </box>
      </box>
    </box>
  )
}

export default Home