initialData.js 995 B

1234567891011121314151617181920212223242526272829303132333435
  1. export const projectList = [{
  2. id: 'JU_CSD',
  3. name: 'Jungfrau',
  4. description: '9th generation GNSS receiver',
  5. manager: 'Thomas Brauner',
  6. versions: [
  7. { name: 'MPW033C', date: '11.12.2015' },
  8. { name: 'Production TO', date: '10.03.2017' }
  9. ],
  10. documents: [
  11. { name: 'Specification', file: 'ju_spec.docx' },
  12. { name: 'Pin List', file: 'ju_pin_list.xlsx' },
  13. { name: 'Characterization PCB', file: 'ju_char_bord.brd' }
  14. ],
  15. pictures: [
  16. { name: 'Jungfrau Logo', file: 'jungfrau.png' }
  17. ]
  18. }, {
  19. id: 'TI_CSD',
  20. name: 'Titlis',
  21. description: '7th generation GNSS receiver',
  22. manager: 'Luca Plutino',
  23. versions: [
  24. { name: 'MPWA', date: '11.12.2013' },
  25. { name: 'Production TO', date: '10.03.2015' }
  26. ],
  27. documents: [
  28. { name: 'Specification', file: 'ti_spec.docx' },
  29. { name: 'Pin List', file: 'ti_pin_list.xlsx' },
  30. { name: 'Characterization PCB', file: 'ti_char_bord.brd' }
  31. ],
  32. pictures: [
  33. { name: 'Titlis Logo', file: 'titlis.png' }
  34. ]
  35. }]