add Ko-fi bean

This commit is contained in:
Julian Tabel
2026-03-20 16:38:54 +01:00
parent c9d42b091f
commit 5bd4ca7d3e
8 changed files with 109 additions and 13 deletions

View File

@@ -5,6 +5,7 @@ import {
GenlockeDetail,
GenlockeList,
Home,
JournalEntryPage,
NewGenlocke,
NewRun,
RunList,
@@ -30,6 +31,7 @@ function App() {
<Route path="runs" element={<RunList />} />
<Route path="runs/new" element={<NewRun />} />
<Route path="runs/:runId" element={<RunEncounters />} />
<Route path="runs/:runId/journal/:entryId" element={<JournalEntryPage />} />
<Route path="genlockes" element={<GenlockeList />} />
<Route path="genlockes/new" element={<NewGenlocke />} />
<Route path="genlockes/:genlockeId" element={<GenlockeDetail />} />