import { Avatar, Box, Container, Flex, HStack, Text } from '@metafam/ds'; import { PlayerFragmentFragment } from 'graphql/autogen/types'; import BackgroundImage from 'public/images/login-background.jpg'; import React from 'react'; import { getPlayerImage, getPlayerName } from 'utils/playerHelpers'; import { PlayerContacts } from './PlayerContacts'; type Props = { player: PlayerFragmentFragment }; export const PlayerHero: React.FC = ({ player }) => { return ( {getPlayerName(player)} ); };