major UI/UX improvements

Signed-off-by: ari melody <ari@arimelody.me>
This commit is contained in:
ari melody 2024-03-18 15:04:04 +00:00
parent 93539c8376
commit 6efd47c6c6
17 changed files with 739 additions and 458 deletions

View file

@ -21,6 +21,102 @@ var placeholders = []Album{
},
},
Description: "she sample on my text 'til i 🚫🚫🚫",
Credits: []AlbumCredit{
AlbumCredit{
Name: "ari melody",
Url: "https://arimelody.me",
Role: "having the swag",
},
AlbumCredit{
Name: "zaire",
Url: "https://supitszaire.com",
Role: "having the swag",
},
AlbumCredit{
Name: "mae taylor",
Url: "https://mae.wtf",
Role: "having the swag",
},
AlbumCredit{
Name: "Loudar",
Url: "https://alex.targoninc.com",
Role: "having the swag",
},
},
Lyrics:
`(call me when you fall asleep)
(all in, let me ride the wave)
(okay!)
call me
when you fall asleep
(fall asleep, call on me)
(oh babe, why don'cha)
yeah, it's how you feel
when the stars come out
(you're never gonna get it)
(while you've lost yourself in a rut)
all in
let me ride the wave
(i'm so stressed)
(i need to fly out of this place)
yeah, 'cause we can drift
'til the break of dawn
(i think i'll be okay)
(if i can sleep today)
(switch it up!)
slumber party at 2AM
could think of nothing more perfect
than a moonlight jam
yeah, i've got no sleep
but I'm free today
yeah you could even say
that i'm free2play
you ain't here by my side
and i try to get by
with my head out the window
get a listen of this
the whispers of the trees
the crickets do be chirpin'
i guess that's how it goes
(call me when you fall asleep)
(all in, let me ride the wave)
(let's go!)
call me
when you fall asleep
(fall asleep, call on me)
(oh babe, why don'cha)
yeah, it's how you feel
when the stars come out
(you're never gonna get it)
(while you've lost yourself in a rut)
all in
let me ride the wave
(i'm so stressed)
(i need to fly out of this place)
yeah, 'cause we can drift
'til the break of dawn
(i think i'll be okay)
(if i can sleep today)
yeah... woo!
(BASS)
oh man...
i'm just sitting here
feeling the breeze
hanging out
listening to the crickets
and the trees in the breeze
living my best life`,
},
{
Id: "free2play",
@ -60,6 +156,50 @@ var placeholders = []Album{
},
},
Description: "living the dream 🌌 ✨",
Credits: []AlbumCredit{
AlbumCredit{
Name: "ari melody",
Url: "https://arimelody.me",
Role: "vocals",
},
AlbumCredit{
Name: "ari melody",
Url: "https://arimelody.me",
Role: "production",
},
AlbumCredit{
Name: "ari melody",
Url: "https://arimelody.me",
Role: "artwork",
},
},
Lyrics:
`the truth is what you make of it
in the end, what you spend, is the end of it
when you're lost in the life
the life that you created on your own
i'm becoming one
with the soul that i see in the mirror
blending one and whole
this time, i'm real
i'm living the dream
i'm living my best life
running out of time
i gotta make this right
whenever you rise
whenever you come down
fall away from the light
and then fall into our arms
the truth is what you make of it
in the end, what you spend, is the end of it
when you're lost in the life
the life that you created on your own
i'm becoming one
with the soul that i see in the mirror
blending one and whole
this time, i'm real`,
},
{
Id: "gomyway",

View file

@ -18,12 +18,20 @@ type (
Free bool;
Links []AlbumLink;
Description string;
Credits []AlbumCredit;
Lyrics string;
}
AlbumLink struct {
Name string;
Url string;
}
AlbumCredit struct {
Role string;
Name string;
Url string;
}
)
func (album Album) PrintArtists() string {