animations + cards
All checks were successful
Deploy App / deploy (push) Successful in 30s

This commit is contained in:
valere
2025-09-30 01:10:12 +02:00
parent 631bc65c70
commit 9438394db8
20 changed files with 775 additions and 455 deletions

View File

@@ -18,16 +18,18 @@ export interface Artist {
}
export interface Track {
id: string
id: number
compilationId: string
title: string
artistId: number
artist?: Artist
artist: Artist
start: number
link: string
url: string
coverId: string
}
// pour une v2
export type BoxState = 'hide' | 'list' | 'selected'
export interface BoxPosition {
x: number
y: number