You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

53 line
1.8 KiB

  1. export const ContactData = [
  2. {
  3. name: 'Max Mustermann',
  4. image: 'https://source.unsplash.com/2x3vfVxwR7o/360x240',
  5. copy: 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.',
  6. mail: 'mm@ihk.de',
  7. phone: '+49 (0) 12 345678-90',
  8. fax: null,
  9. vcard: 'https://www.ihk.de/blueprint/vcard/?contentId=1134770',
  10. },
  11. {
  12. name: 'Erika Musterfrau',
  13. image: 'https://source.unsplash.com/KucgBMFc4JU/360x240',
  14. copy: 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.',
  15. mail: 'aa@ihk.de',
  16. phone: '+49 (0) 12 345678-94',
  17. fax: '+49 (0) 12 345678-00',
  18. vcard: 'https://www.ihk.de/blueprint/vcard/?contentId=1134770',
  19. },
  20. {
  21. name: 'Bernd Beispiel',
  22. image: 'https://source.unsplash.com/mw4u9Qm6CHQ/360x240',
  23. copy: null,
  24. mail: 'mm@ihk.de',
  25. phone: '+49 (0) 12 345678-90',
  26. fax: null,
  27. vcard: null,
  28. },
  29. ]
  30. export const SingleContactData = [
  31. {
  32. name: 'Max Mustermann',
  33. image: 'https://source.unsplash.com/2x3vfVxwR7o/360x240',
  34. copy: 'Bereiche: Aus- und Weiterbildung, Kaufmännische Weiterbildung',
  35. mail: 'mm@ihk.de',
  36. phone: '+49 (0) 12 345678-90',
  37. fax: null,
  38. vcard: 'https://www.ihk.de/blueprint/vcard/?contentId=1134770',
  39. },
  40. ]
  41. export const OrganisationContactData = [
  42. {
  43. name: 'Industrie- und Handelskammer Stade für den Elbe-Weser-Raum',
  44. image: null,
  45. copy: '<div class="text">Am Schäferstieg 2<br>21680 Stade</div><div class="text"><a href="#">Geschäftsstellen und Öffnungszeiten</a></div>',
  46. mail: 'info@stade.ihk.de',
  47. phone: '04141/524-0',
  48. fax: null,
  49. vcard: null,
  50. }
  51. ]