import Button from "@/components/button"; import Sheet from "@/components/sheet/sheet"; import { useAuth } from "@/contexts/auth-context"; import { useSheet } from "@/hooks/use-sheet"; import { Text } from "@mantine/core"; const EnrollFreeAgent = () => { const { open, isOpen, toggle } = useSheet(); const { user } = useAuth(); return ( <> Enrolling as a free agent will enter you in a pool of players wanting to play but don't have a teammate yet. You will be automatically paired with a partner before the tournament starts, and you will be able to see your new team and set a walkout song in the app. ); }; export default EnrollFreeAgent;