fix: display albums and artists on the search page, and also few css fixes

This commit is contained in:
rramiachraf 2024-06-10 12:16:11 +01:00
parent e6e9d5b16d
commit 355b721069
6 changed files with 94 additions and 63 deletions

View file

@ -11,6 +11,11 @@ type result struct {
Title string
Path string
Thumbnail string `json:"song_art_image_thumbnail_url"`
ArtistImage string `json:"image_url"`
ArtistName string `json:"name"`
URL string `json:"url"`
AlbumImage string `json:"cover_art_url"`
AlbumName string `json:"full_title"`
}
type hits []struct {