Added dumby pages

This commit is contained in:
2025-09-08 23:52:53 +02:00
parent 96345d888f
commit 77bda4ea1f
8 changed files with 146 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
"use client"
import { usePathname } from "next/navigation"
export function QuestPageLoadText() {
const path = usePathname()
return <p>{`Loading quests for ${path.split("/").at(-1)}`}</p>
}