|
1 | 1 | const images = '/img/books' |
2 | 2 |
|
3 | 3 | const books = [ |
4 | | - { title: 'Learning React', cover: `${images}/learning-react.jpg`, category: 'Web' }, |
5 | | - { title: 'Learn design pattern', cover: `${images}/designpattern.jpg`, category: 'Essentials'}, |
6 | | - { title: 'React Up and Running', cover: `${images}/react-up.jpg`, category: 'Web' }, |
7 | | - { title: 'Learning React Native', cover: `${images}/reactnative.jpg`, category: 'Mobile' }, |
8 | | - { title: 'React Native CookBook', cover: `${images}/react-native-cookbook.jpg`, category: 'Mobile' }, |
9 | | - { title: 'Bootstrap 4 Blueprints', cover: `${images}/bootstrap4-blue.jpg`, category: 'Ux' }, |
10 | | - { title: 'AWS System Administration', cover: `${images}/aws-admin.jpg`, category: 'DevOps' }, |
11 | | - { title: 'Effective DevOps', cover: `${images}/effective-devops.jpg`, category: 'DevOps' }, |
12 | | - { title: 'Kubernetes Up & Running', cover: `${images}/kubernetes.jpg`, category: 'DevOps' }, |
13 | | - { title: 'Using Docker', cover: `${images}/using-docker.jpg`, category: 'DevOps' }, |
14 | | - { title: 'Learning Angular JS', cover: `${images}/learning-angularjs.jpg`, category: 'Web' }, |
15 | | - { title: 'Angular JS', cover: `${images}/angularjs.jpg`, category: 'Web' }, |
16 | | - { title: 'Angular JS 2', cover: `${images}/angular2-ninja.jpg`, category: 'Web' }, |
17 | | - { title: 'Getting Better in JavaScript', cover: `${images}/javascript.jpg`, category: 'Outdated' }, |
18 | | - { title: 'Javascript Testing Jasmine', cover: `${images}/test-jasmine.jpg`, category: 'Test' }, |
19 | | - { title: 'Eloquent Javascript', cover: `${images}/eloquent-js.jpg`, category: 'Essentials'}, |
20 | | - { title: 'Building Microservices', cover: `${images}/microservices.jpg`, category: 'DevOps'}, |
21 | | - { title: 'DevOps Handbook', cover: `${images}/devops-handbook.jpg`, category: 'DevOps' }, |
22 | | - { title: 'Setting up nginx', cover: `${images}/nginx.jpg`, category: 'DevOps'}, |
23 | | - { title: 'Getting started React Native', cover: `${images}/get-start-react-native.jpg`, category: 'Mobile' }, |
| 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' }, |
24 | 24 | ] |
25 | 25 |
|
26 | 26 | export default books |
0 commit comments