first 3D model
All checks were successful
Deploy App / deploy (push) Successful in 1m18s

This commit is contained in:
valere
2025-09-17 23:39:43 +02:00
parent 116d15d1ce
commit 0c1cf30996
28 changed files with 1384 additions and 63 deletions

28
types/types.ts Normal file
View File

@@ -0,0 +1,28 @@
// types.ts
export interface Compilation {
id: string
name: string
duration: number
tracks?: Track[]
description: string
colorFrom: string
colorTo: string
}
export interface Artist {
id: number
name: string
url: string
coverId: string
}
export interface Track {
id: string
compilationId: string
title: string
artistId: number
artist?: Artist
start: number
link: string
coverId: string
}