diff --git a/src/data/songs.ts b/src/data/songs.ts new file mode 100644 index 0000000..5059d5c --- /dev/null +++ b/src/data/songs.ts @@ -0,0 +1,68 @@ +export type Song = { + id: string + artist: string + title: string +} + +export const songs: Song[] = [ + { + id: 'total-eclipse-of-the-heart', + artist: 'Bonnie Tyler', + title: 'Total Eclipse of the Heart', + }, + { + id: 'holding-out-for-a-hero', + artist: 'Bonnie Tyler', + title: 'Holding Out for a Hero', + }, + { + id: 'its-a-heartache', + artist: 'Bonnie Tyler', + title: "It's a Heartache", + }, + { + id: 'lost-in-france', + artist: 'Bonnie Tyler', + title: 'Lost in France', + }, + { + id: 'faster-than-the-speed-of-night', + artist: 'Bonnie Tyler', + title: 'Faster Than the Speed of Night', + }, + { + id: 'if-i-sing-you-a-love-song', + artist: 'Bonnie Tyler', + title: 'If I Sing You a Love Song', + }, + { + id: 'have-you-ever-seen-the-rain', + artist: 'Bonnie Tyler', + title: 'Have You Ever Seen the Rain?', + }, + { + id: 'making-love-out-of-nothing-at-all', + artist: 'Bonnie Tyler', + title: 'Making Love (Out of Nothing at All)', + }, + { + id: 'loving-you-is-a-dirty-job-but-somebodys-gotta-do-it', + artist: 'Bonnie Tyler', + title: "Loving You Is a Dirty Job but Somebody's Gotta Do It", + }, + { + id: 'a-rockin-good-way-to-mess-around-and-fall-in-love', + artist: 'Bonnie Tyler', + title: "A Rockin' Good Way (to Mess Around and Fall in Love)", + }, + { + id: 'more-than-a-lover', + artist: 'Bonnie Tyler', + title: 'More Than a Lover', + }, + { + id: 'angel-of-the-morning', + artist: 'Bonnie Tyler', + title: 'Angel of the Morning', + }, +] \ No newline at end of file