add team management (#131)
* add team management * add more team management * add join team page
This commit is contained in:
13
apps/web/src/app/join-team/page.tsx
Normal file
13
apps/web/src/app/join-team/page.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
"use client";
|
||||
|
||||
import JoinTeam from "~/components/team/JoinTeam";
|
||||
|
||||
export default function CreateTeam() {
|
||||
return (
|
||||
<div className="flex items-center justify-center min-h-screen ">
|
||||
<div className=" w-[300px] flex flex-col gap-8">
|
||||
<JoinTeam />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user