|
1 | 1 | const images = '/img/books' |
2 | 2 |
|
3 | 3 | const books = [ |
4 | | - { id: 1, title: 'Learning React', cover: `${images}/learning-react.jpg`, category: 'Web' }, |
5 | | - { id: 2, title: 'Learn design pattern', cover: `${images}/designpattern.jpg`, category: 'Essentials'}, |
6 | | - { id: 3, title: 'React Up and Running', cover: `${images}/react-up.jpg`, category: 'Web' }, |
7 | | - { id: 4, title: 'Learning React Native', cover: `${images}/reactnative.jpg`, category: 'Mobile' }, |
8 | | - { id: 5, title: 'React Native CookBook', cover: `${images}/react-native-cookbook.jpg`, category: 'Mobile' }, |
9 | | - { id: 6, title: 'Bootstrap 4 Blueprints', cover: `${images}/bootstrap4-blue.jpg`, category: 'Ux' }, |
10 | | - { id: 7, title: 'AWS System Administration', cover: `${images}/aws-admin.jpg`, category: 'DevOps' }, |
11 | | - { id: 8, title: 'Effective DevOps', cover: `${images}/effective-devops.jpg`, category: 'DevOps' }, |
12 | | - { id: 9, title: 'Kubernetes Up & Running', cover: `${images}/kubernetes.jpg`, category: 'DevOps' }, |
13 | | - { id: 11, title: 'Using Docker', cover: `${images}/using-docker.jpg`, category: 'DevOps' }, |
14 | | - { id: 12, title: 'Learning Angular JS', cover: `${images}/learning-angularjs.jpg`, category: 'Web' }, |
15 | | - { id: 13, title: 'Angular JS', cover: `${images}/angularjs.jpg`, category: 'Web' }, |
16 | | - { id: 14, title: 'Angular JS 2', cover: `${images}/angular2-ninja.jpg`, category: 'Web' }, |
17 | | - { id: 15, title: 'Getting Better in JavaScript', cover: `${images}/javascript.jpg`, category: 'Outdated' }, |
18 | | - { id: 16, title: 'Javascript Testing Jasmine', cover: `${images}/test-jasmine.jpg`, category: 'Test' }, |
19 | | - { id: 17, title: 'Eloquent Javascript', cover: `${images}/eloquent-js.jpg`, category: 'Essentials'}, |
20 | | - { id: 18, title: 'Building Microservices', cover: `${images}/microservices.jpg`, category: 'DevOps'}, |
21 | | - { id: 19, title: 'DevOps Handbook', cover: `${images}/devops-handbook.jpg`, category: 'DevOps' }, |
22 | | - { id: 20, title: 'Setting up nginx', cover: `${images}/nginx.jpg`, category: 'DevOps'}, |
23 | | - { id: 21, title: 'Getting started React Native', cover: `${images}/get-start-react-native.jpg`, category: 'Mobile' }, |
| 4 | + { |
| 5 | + id: 1, |
| 6 | + title: 'Learning React', |
| 7 | + cover: `${images}/learning-react.jpg`, |
| 8 | + category: 'Web' |
| 9 | + }, |
| 10 | + { |
| 11 | + id: 2, |
| 12 | + title: 'Learn design pattern', |
| 13 | + cover: `${images}/designpattern.jpg`, |
| 14 | + category: 'Essentials' |
| 15 | + }, |
| 16 | + { |
| 17 | + id: 3, |
| 18 | + title: 'React Up and Running', |
| 19 | + cover: `${images}/react-up.jpg`, |
| 20 | + category: 'Web' |
| 21 | + }, |
| 22 | + { |
| 23 | + id: 4, |
| 24 | + title: 'Learning React Native', |
| 25 | + cover: `${images}/reactnative.jpg`, |
| 26 | + category: 'Mobile' |
| 27 | + }, |
| 28 | + { |
| 29 | + id: 5, |
| 30 | + title: 'React Native CookBook', |
| 31 | + cover: `${images}/react-native-cookbook.jpg`, |
| 32 | + category: 'Mobile' |
| 33 | + }, |
| 34 | + { |
| 35 | + id: 6, |
| 36 | + title: 'Bootstrap 4 Blueprints', |
| 37 | + cover: `${images}/bootstrap4-blue.jpg`, |
| 38 | + category: 'Ux' |
| 39 | + }, |
| 40 | + { |
| 41 | + id: 7, |
| 42 | + title: 'AWS System Administration', |
| 43 | + cover: `${images}/aws-admin.jpg`, |
| 44 | + category: 'DevOps' |
| 45 | + }, |
| 46 | + { |
| 47 | + id: 8, |
| 48 | + title: 'Effective DevOps', |
| 49 | + cover: `${images}/effective-devops.jpg`, |
| 50 | + category: 'DevOps' |
| 51 | + }, |
| 52 | + { |
| 53 | + id: 9, |
| 54 | + title: 'Kubernetes Up & Running', |
| 55 | + cover: `${images}/kubernetes.jpg`, |
| 56 | + category: 'DevOps' |
| 57 | + }, |
| 58 | + { |
| 59 | + id: 11, |
| 60 | + title: 'Using Docker', |
| 61 | + cover: `${images}/using-docker.jpg`, |
| 62 | + category: 'DevOps' |
| 63 | + }, |
| 64 | + { |
| 65 | + id: 12, |
| 66 | + title: 'Learning Angular JS', |
| 67 | + cover: `${images}/learning-angularjs.jpg`, |
| 68 | + category: 'Web' |
| 69 | + }, |
| 70 | + { |
| 71 | + id: 13, |
| 72 | + title: 'Angular JS', |
| 73 | + cover: `${images}/angularjs.jpg`, |
| 74 | + category: 'Web' |
| 75 | + }, |
| 76 | + { |
| 77 | + id: 14, |
| 78 | + title: 'Angular JS 2', |
| 79 | + cover: `${images}/angular2-ninja.jpg`, |
| 80 | + category: 'Web' |
| 81 | + }, |
| 82 | + { |
| 83 | + id: 15, |
| 84 | + title: 'Getting Better in JavaScript', |
| 85 | + cover: `${images}/javascript.jpg`, |
| 86 | + category: 'Outdated' |
| 87 | + }, |
| 88 | + { |
| 89 | + id: 16, |
| 90 | + title: 'Javascript Testing Jasmine', |
| 91 | + cover: `${images}/test-jasmine.jpg`, |
| 92 | + category: 'Test' |
| 93 | + }, |
| 94 | + { |
| 95 | + id: 17, |
| 96 | + title: 'Eloquent Javascript', |
| 97 | + cover: `${images}/eloquent-js.jpg`, |
| 98 | + category: 'Essentials' |
| 99 | + }, |
| 100 | + { |
| 101 | + id: 18, |
| 102 | + title: 'Building Microservices', |
| 103 | + cover: `${images}/microservices.jpg`, |
| 104 | + category: 'DevOps' |
| 105 | + }, |
| 106 | + { |
| 107 | + id: 19, |
| 108 | + title: 'DevOps Handbook', |
| 109 | + cover: `${images}/devops-handbook.jpg`, |
| 110 | + category: 'DevOps' |
| 111 | + }, |
| 112 | + { |
| 113 | + id: 20, |
| 114 | + title: 'Setting up nginx', |
| 115 | + cover: `${images}/nginx.jpg`, |
| 116 | + category: 'DevOps' |
| 117 | + }, |
| 118 | + { |
| 119 | + id: 21, |
| 120 | + title: 'Getting started React Native', |
| 121 | + cover: `${images}/get-start-react-native.jpg`, |
| 122 | + category: 'Mobile' |
| 123 | + } |
24 | 124 | ] |
25 | 125 |
|
26 | 126 | export default books |
0 commit comments