import { useMe } from "@/util/hooks"; import { Container, Title } from "@mantine/core"; export default function Me() { const me = useMe(); return ( {me.data?.username} ); }