From 46072fc1fe952d54ec355e39b33b481ee4e616b4 Mon Sep 17 00:00:00 2001 From: Marie Holen Danielson Date: Wed, 2 Sep 2026 18:58:08 +0200 Subject: [PATCH 1/2] Lagt til hardkodet sangliste med 12 sanger --- src/data/songs.ts | 55 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 src/data/songs.ts diff --git a/src/data/songs.ts b/src/data/songs.ts new file mode 100644 index 0000000..9dc1945 --- /dev/null +++ b/src/data/songs.ts @@ -0,0 +1,55 @@ +export type Song = { + artist: string + title: string +} + +export const songs: Song[] = [ + { + artist: 'Bonnie Tyler', + title: 'Total Eclipse of the Heart', + }, + { + artist: 'Bonnie Tyler', + title: 'Holding Out for a Hero', + }, + { + artist: 'Bonnie Tyler', + title: "It's a Heartache", + }, + { + artist: 'Bonnie Tyler', + title: 'Lost in France', + }, + { + artist: 'Bonnie Tyler', + title: 'Faster Than the Speed of Night', + }, + { + artist: 'Bonnie Tyler', + title: 'If I Sing You a Love Song', + }, + { + artist: 'Bonnie Tyler', + title: 'Have You Ever Seen the Rain?', + }, + { + artist: 'Bonnie Tyler', + title: 'Making Love (Out of Nothing at All)', + }, + { + artist: 'Bonnie Tyler', + title: "Loving You Is a Dirty Job but Somebody's Gotta Do It", + }, + { + artist: 'Bonnie Tyler', + title: "A Rockin' Good Way (to Mess Around and Fall in Love)", + }, + { + artist: 'Bonnie Tyler', + title: 'More Than a Lover', + }, + { + artist: 'Bonnie Tyler', + title: 'Angel of the Morning', + }, +] \ No newline at end of file From 4e1eac87c5f0a7d4ea22d29d34cf2ecaa44de17d Mon Sep 17 00:00:00 2001 From: Marie Holen Danielson Date: Wed, 2 Sep 2026 21:53:50 +0200 Subject: [PATCH 2/2] la til id-felt --- src/data/songs.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/data/songs.ts b/src/data/songs.ts index 9dc1945..5059d5c 100644 --- a/src/data/songs.ts +++ b/src/data/songs.ts @@ -1,54 +1,67 @@ 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', },