diff --git a/ui/src/app/bot/page.tsx b/ui/src/api/characters.types.ts similarity index 100% rename from ui/src/app/bot/page.tsx rename to ui/src/api/characters.types.ts diff --git a/ui/src/app/campaigns/page.tsx b/ui/src/app/campaigns/page.tsx new file mode 100644 index 0000000..e892a07 --- /dev/null +++ b/ui/src/app/campaigns/page.tsx @@ -0,0 +1,5 @@ +import React from 'react'; + +export default function Page() { + return <>>; +} diff --git a/ui/src/app/characters/[id]/page.tsx b/ui/src/app/characters/[id]/page.tsx new file mode 100644 index 0000000..3cd2f3f --- /dev/null +++ b/ui/src/app/characters/[id]/page.tsx @@ -0,0 +1,5 @@ +import React from 'react'; + +export default function Page({ params }: { params: { id: string } }) { + return <>{params.id}>; +} diff --git a/ui/src/app/characters/create/page.tsx b/ui/src/app/characters/create/page.tsx new file mode 100644 index 0000000..c8442ed --- /dev/null +++ b/ui/src/app/characters/create/page.tsx @@ -0,0 +1,5 @@ +import React from 'react'; + +export default function Page() { + return
Siren is a Dungeon Master's best friend.