import { Group, Avatar, Stack, Title, Text, Container } from '@mantine/core'; interface Props { avatarUrl?: string; name: string; handle: string; } export default function MinimalProfileHeader(props: Props) { return ( {props.name} @{props.handle} ); }