import Player from '@/web/components/New/PlayerMobile' import { css, cx } from '@emotion/css' import { useMemo } from 'react' import { player } from '@/web/store' import { useSnapshot } from 'valtio' import Router from '@/web/components/New/Router' import MenuBar from './MenuBar' import TopbarMobile from './Topbar/TopbarMobile' import { isIOS, isPWA, isSafari } from '@/web/utils/common' import Login from './Login' const LayoutMobile = () => { const playerSnapshot = useSnapshot(player) const showPlayer = !!playerSnapshot.track return (
{showPlayer && (
)}
{/* Notch background */} {isIOS && isSafari && isPWA && (
)}
) } export default LayoutMobile