import { resizeImage } from '@/web/utils/common' import { cx, css } from '@emotion/css' import Image from '@/web/components/New/Image' import { breakpoint as bp } from '@/web/utils/const' import BlurBackground from '@/web/components/New/BlurBackground' import ArtistInfo from './ArtistInfo' import Actions from './Actions' import LatestRelease from './LatestRelease' import useAppleMusicArtist from '@/web/hooks/useAppleMusicArtist' const Header = ({ artist }: { artist?: Artist }) => { const { data: artistFromApple, isLoading: isLoadingArtistFromApple } = useAppleMusicArtist({ id: artist?.id, name: artist?.name, }) return (