import Main from '@/web/components/New/Main' import Player from '@/web/components/New/Player' import MenuBar from '@/web/components/New/MenuBar' import Topbar from '@/web/components/New/Topbar/TopbarDesktop' import { css, cx } from '@emotion/css' import { player } from '@/web/store' import { useSnapshot } from 'valtio' import Login from './Login' const Layout = () => { const playerSnapshot = useSnapshot(player) const showPlayer = !!playerSnapshot.track return (