Delete src/components/Lanyard.tsx

This commit is contained in:
Lio 2024-10-09 11:24:18 +00:00
parent b7ed1e1b0b
commit d25146db8f

View file

@ -1,17 +0,0 @@
// import { useLanyard } from "use-lanyard";
// import constants from "@/lib/constants";
// import yard from "@/styles/Lanyard.module.sass"
// const Lanyard = () => {
// const lanyard = useLanyard(constants.ids.discord as `${bigint}`).data
// if (!lanyard?.listening_to_spotify) return (<></>);
// return (
// <div id={yard.lanyard}>
// <img src={lanyard?.spotify?.album_art_url as string} alt="" />
// <span> {lanyard?.spotify?.song} by {lanyard?.spotify?.artist.split(';').length < 3 ? (lanyard?.spotify?.artist.split(';') as string[]).join(" &") : (lanyard?.spotify?.artist.split(';')[0])} </span>
// </div>
// );
// };
// export default Lanyard;