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/states/player' import { useSnapshot } from 'valtio' import Login from './Login' import TrafficLight from './TrafficLight' import BlurBackground from './BlurBackground' import Airplay from './Airplay' import TitleBar from './TitleBar' import uiStates from '@/web/states/uiStates' const Layout = () => { const playerSnapshot = useSnapshot(player) const { fullscreen } = useSnapshot(uiStates) const showPlayer = !!playerSnapshot.track return (