studio v1
All checks were successful
Deploy App / deploy (push) Successful in 1m49s

This commit is contained in:
valere
2025-09-20 17:18:29 +02:00
parent 5912b97349
commit 9e697822e4
9 changed files with 152 additions and 444 deletions

View File

@@ -5,8 +5,9 @@ export interface Compilation {
duration: number
tracks?: Track[]
description: string
colorFrom: string
colorTo: string
color2: string
color1: string
color3: string
}
export interface Artist {
@@ -26,3 +27,15 @@ export interface Track {
link: string
coverId: string
}
export interface BoxPosition {
x: number
y: number
z: number
}
export interface BoxSize {
h: number
w: number
d: number
}