import { resizeImage } from '@/web/utils/common' import { cx, css } from '@emotion/css' import useIsMobile from '@/web/hooks/useIsMobile' const BlurBackground = ({ cover }: { cover?: string }) => { const isMobile = useIsMobile() return isMobile || !cover ? ( <> ) : ( ) } export default BlurBackground