diff --git a/pages/teams/[teamid]/admin.tsx b/pages/teams/[teamid]/admin.tsx new file mode 100644 index 0000000..4497556 --- /dev/null +++ b/pages/teams/[teamid]/admin.tsx @@ -0,0 +1,12 @@ +import { useRouter } from 'next/router' + +export default function TeamAdmin() { + const router = useRouter() + const { teamid } = router.query + + // check if the team is a valid team route and show the dashboard for the team + + return ( + this is the admin page for team: {teamid} + ) +} \ No newline at end of file