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