import { useOverlayDataStore } from "@/store/overlayDataStore"; import { songDifficultyToColor } from "@/utils/songUtils"; import useStore from "@/utils/useStore"; import clsx from "clsx"; import Image from "next/image"; export default function SongInfo() { const dataStore = useStore(useOverlayDataStore, (store) => store); if (!dataStore) return null; const { paused, songInfo } = dataStore; if (!songInfo) return null; return (
Song Image

{songInfo.songName} {songInfo.songSubName}

{songInfo.songMapper}

{songInfo.difficulty}

!bsr {songInfo.bsr}

); }