mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 21:28:06 +00:00
feat: updates
This commit is contained in:
parent
ffcc60b793
commit
dd5361b8c4
106 changed files with 11989 additions and 4143 deletions
|
|
@ -1,22 +0,0 @@
|
|||
import cx from 'classnames'
|
||||
|
||||
const bigCover = [0, 2, 3, 8, 9, 11, 16, 18, 24, 26, 27]
|
||||
|
||||
const CoverWall = ({ covers }: { covers: string[] }) => {
|
||||
return (
|
||||
<div className='grid auto-rows-auto grid-cols-8 gap-[13px] '>
|
||||
{covers.map((cover, index) => (
|
||||
<img
|
||||
src={cover}
|
||||
key={cover}
|
||||
className={cx(
|
||||
'rounded-3xl',
|
||||
bigCover.includes(index) && 'col-span-2 row-span-2'
|
||||
)}
|
||||
/>
|
||||
))}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default CoverWall
|
||||
Loading…
Add table
Add a link
Reference in a new issue