diff --git a/assets/cards/mock-up-back.png b/assets/cards/mock-up-back.png new file mode 100644 index 0000000..24447c3 Binary files /dev/null and b/assets/cards/mock-up-back.png differ diff --git a/assets/cards/mock-up-five.png b/assets/cards/mock-up-five.png new file mode 100644 index 0000000..1ac01c7 Binary files /dev/null and b/assets/cards/mock-up-five.png differ diff --git a/assets/cards/mock-up-four.png b/assets/cards/mock-up-four.png new file mode 100644 index 0000000..037e586 Binary files /dev/null and b/assets/cards/mock-up-four.png differ diff --git a/assets/cards/mock-up-one.png b/assets/cards/mock-up-one.png new file mode 100644 index 0000000..326cef5 Binary files /dev/null and b/assets/cards/mock-up-one.png differ diff --git a/assets/cards/mock-up-six.png b/assets/cards/mock-up-six.png new file mode 100644 index 0000000..a4170bc Binary files /dev/null and b/assets/cards/mock-up-six.png differ diff --git a/assets/cards/mock-up-three.png b/assets/cards/mock-up-three.png new file mode 100644 index 0000000..9170045 Binary files /dev/null and b/assets/cards/mock-up-three.png differ diff --git a/assets/cards/mock-up-two.png b/assets/cards/mock-up-two.png new file mode 100644 index 0000000..c87b488 Binary files /dev/null and b/assets/cards/mock-up-two.png differ diff --git a/data.js b/data.js new file mode 100644 index 0000000..06fd283 --- /dev/null +++ b/data.js @@ -0,0 +1,34 @@ +const cardDeck = [ + { + id: 1, + name: 'one', + img: 'mock-up-one.png', + }, + { + id: 2, + name: 'two', + img: 'mock-up-two.png', + }, + { + id: 3, + name: 'three', + img: 'mock-up-three.png', + }, + { + id: 4, + name: 'four', + img: 'mock-up-four.png', + }, + { + id: 5, + name: 'five', + img: 'mock-up-five.png', + }, + { + id: 6, + name: 'six', + img: 'mock-up-six.png', + }, +]; + +export default cardDeck; \ No newline at end of file