computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
805 B
26 lines
805 B
import { CheckIcon } from '../ReactIcons/CheckIcon'; |
|
import type { TeamDocument } from './CreateTeamForm'; |
|
|
|
type Step4Props = { |
|
team: TeamDocument; |
|
}; |
|
|
|
export function Step4({ team }: Step4Props) { |
|
return ( |
|
<div className="mt-4 flex flex-col rounded-xl border py-12 text-center"> |
|
<div className="mb-1 flex flex-col items-center"> |
|
<CheckIcon additionalClasses={'h-14 w-14 mb-4 opacity-100'} /> |
|
<h2 className="mb-2 text-2xl font-bold">Team Created</h2> |
|
<p className="text-sm text-gray-700"> |
|
Your team has been created. Happy learning! |
|
</p> |
|
<a |
|
href={`/team/activity?t=${team._id}`} |
|
className="mt-4 rounded-md bg-black px-5 py-1.5 text-sm text-white" |
|
> |
|
View Team |
|
</a> |
|
</div> |
|
</div> |
|
); |
|
}
|
|
|