diff --git a/src/components/FilterSortBar.tsx b/src/components/FilterSortBar.tsx new file mode 100644 index 0000000..6db5a26 --- /dev/null +++ b/src/components/FilterSortBar.tsx @@ -0,0 +1,34 @@ +export function FilterSortBar() { + return ( +
+

Filtrer og sorter

+ +
+ + +
+ +
+ + +
+
+ ) +} \ No newline at end of file diff --git a/src/components/SongCard.tsx b/src/components/SongCard.tsx index 99a0bbc..c316aa7 100644 --- a/src/components/SongCard.tsx +++ b/src/components/SongCard.tsx @@ -9,6 +9,7 @@ export function SongCard({ song }: SongCardProps) {

{song.title}

{song.artist}

+

{song.album}

Teksten vises her

diff --git a/src/data/songs.ts b/src/data/songs.ts index 5059d5c..a20d419 100644 --- a/src/data/songs.ts +++ b/src/data/songs.ts @@ -2,6 +2,7 @@ export type Song = { id: string artist: string title: string + album: string } export const songs: Song[] = [ @@ -9,60 +10,72 @@ export const songs: Song[] = [ id: 'total-eclipse-of-the-heart', artist: 'Bonnie Tyler', title: 'Total Eclipse of the Heart', + album: 'Faster Than the Speed of Night', }, { id: 'holding-out-for-a-hero', artist: 'Bonnie Tyler', title: 'Holding Out for a Hero', + album: 'Secret Dreams and Forbidden Fire', }, { id: 'its-a-heartache', artist: 'Bonnie Tyler', title: "It's a Heartache", + album: 'Natural Force', }, { id: 'lost-in-france', artist: 'Bonnie Tyler', title: 'Lost in France', + album: 'The World Starts Tonight', }, { id: 'faster-than-the-speed-of-night', artist: 'Bonnie Tyler', title: 'Faster Than the Speed of Night', + album: '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', + album: 'Natural Force', }, { id: 'have-you-ever-seen-the-rain', artist: 'Bonnie Tyler', title: 'Have You Ever Seen the Rain?', + album: 'Faster Than the Speed of Night', }, { id: 'making-love-out-of-nothing-at-all', artist: 'Bonnie Tyler', title: 'Making Love (Out of Nothing at All)', + album: 'Free Spirit', }, { 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", + album: 'Secret Dreams and Forbidden Fire', }, { 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)", + album: 'Singel', }, { id: 'more-than-a-lover', artist: 'Bonnie Tyler', title: 'More Than a Lover', + album: 'The World Starts Tonight', }, { id: 'angel-of-the-morning', artist: 'Bonnie Tyler', title: 'Angel of the Morning', + album: 'All in One Voice', }, ] \ No newline at end of file